#include #include #include #include #include #include #include "TROOT.h" #include "TechmodelPamelaRun.h" #include "EventReader.h" #include #include #include extern "C" { //#include "DirectoryStructure.h" #include } using namespace pamela; using namespace log4cxx; using namespace std; using namespace pamela::techmodel; static LoggerPtr logger = Logger::getLogger(_T("pamela.techmodel.TechmodelReader")); int main(int argc, char* argv[]) { stringstream oss; int maxPackets = 0; char nomeFileLog[L_tmpnam]; tmpnam(nomeFileLog); DIR *dirp; string pathDir((char*)getenv("YODA_DATA")); string pathLog = nomeFileLog; bool ANALIZE = false; //---------------- Log4cxx configuration----------------------------------------------- //Define the configuration file to be used on log4cxx PropertyConfigurator::configure(pathDir + "/log4cxx.conf"); //BasicConfigurator::configure(); //Retrieve the rootLogger and append to it a default FileAppender. //Note that the priority level of the rootLogger (defined in log4cxx.conf) is unmodified //LoggerPtr rootLogger = Logger::getRootLogger(); //FileAppender *fileAppender = new FileAppender(); //fileAppender->setFile(pathLog); //fileAppender->setAppend(false); //fileAppender->setBufferedIO(true); //the default size is 8k //fileAppender->setBufferSize(1000000); //fileAppender->activateOptions(); //fileAppender->setLayout(new PatternLayout()); //FileAppender *fileAppender = new FileAppender(new PatternLayout(), pathLog, false, true, 10000); //rootLogger->addAppender(fileAppender); //rootLogger->removeAppender('A1'); //---------------- Log4cxx configuration----------------------------------------------- // Check file name if (argc < 2){ //logger->info(_T("You have forgotten the file name.")); cout << "You have forgotten the file name. \n"; cout << "Try '--help' for more information. \n"; exit(1); } if (!strcmp(argv[1], "--help")){ cout << "Usage: yoda FILE [OPTION] \n"; cout << "\t --help print this help and exit \n"; cout << "\t -p maximum number of packets to process [default all] \n"; cout << "\t -analize generate pre-defined analisys files (gif/text) inside the unpacking directory\n"; exit(1); } ifstream from (argv[1]); if (!from) { //logger->info(_T("The file does not exist.")); cout << "The file does not exist. \n"; exit(1); } for (int i = 2; i < argc; i++){ if (!strcmp(argv[i], "-p")){ if (++i >= argc){ cerr << "-p needs arguments. \n"; cout << "Try '--help' for more information. \n"; exit(1); } if (isdigit(*argv[i])) { maxPackets = atoi(argv[i]); } else { //logger->info(_T("The file does not exist.")); cerr << "-p needs a integer value. \n"; cout << "Try '--help' for more information. \n"; exit(1); } } if (!maxPackets){ cout << "Try '--help' for more information. \n"; exit(1); } if (!strcmp(argv[i], "-analize")) ANALIZE = true; } //-------------------------------------------------- //This is the configuration for the Yoda Logger //The parameters in the RollingFileAppender means // default ------------>the selected category // YodaLog.txt ------------>the LogFile name // 1000 ------------>The max size (in Kb) of the LogFile // 5 ------------>How many times the file will be backup time_t rawtime; struct tm * timeinfo; time ( &rawtime ); timeinfo = localtime ( &rawtime ); oss.str(""); oss << "<-------------------------------START UNPACKING------------------------------->\n" << " Starting the program at: " << asctime (timeinfo) << " Opening file: " << argv[1]; logger->info(oss.str().c_str()); gROOT->SetBatch(kTRUE); EventReader *reader = new EventReader(maxPackets); int num = 0; TechmodelPamelaRun Run(argv[1]); reader->Init(&Run); oss.str(""); oss << "Init successul ok" << asctime (timeinfo); logger->debug(oss.str().c_str()); reader->RunEvent(num); //TBD --- eliminate the runNumber reader->Finish(); Run.WriteFiles(); logger->info("<-------------------------------END UNPACKING------------------------------->\n"); //Momentarly suspended the save //system(command.c_str()); }