#include #include #include #include #include #include #include #include #include #include #include "IDatum.hxx" #include "IVInputFile.hxx" #include "ICOMETEvent.hxx" #include "IHandle.hxx" #include "IRooTrackerFile.hxx" COMET::IRooTrackerFile* fOutFile=NULL; const std::string defaultTreeName("RooTrackerTree"); const std::string defaultOutFileName("output.rootracker"); int monitorID = 0; ///////////////////////////////////////////////////////////////////////// void InitRooTracker(const char *file_rootracker){ return; } ///////////////////////////////////////////////////////////////////////// void AddParticle(int evt,double x[3],double p[3], double mass, int pid){ //brEvtNum=evt; double energy =std::sqrt(p[0]*p[0]+p[1]*p[1]+p[2]*p[2]+mass*mass); int particleNum=fOutFile->NewParticle(); fOutFile->SetStdHepX4( particleNum, x[0], x[1], x[2], 0.0); fOutFile->SetStdHepP4( particleNum, p[0], p[1], p[2], energy); fOutFile->SetStdHepPdg( particleNum, pid); fOutFile->SetStdHepTrackId( particleNum, 1); // Assume unity for the weight fOutFile->SetWeight( particleNum, 1); // TODO have this support more than one monitor fOutFile->SetMonitorId( particleNum, monitorID); // set to 1 since that is what SimG4 is expecting for particles that it can track fOutFile->SetStdHepStatus( particleNum, 1); // Set the event number fOutFile->SetEvtNum(evt); return; } ///////////////////////////////////////////////////////////////////////// void PrintUsage(const char* progName){ std::cout<<"Usage: "< inFileNames; std::string outMonitor="ProtonBeam"; double outMass = 938.2720; // proton mass in MeV int outPID = 2212; // proton PID int totalNParticles = -1; int freqParticles = 1000; for (;;) { int c = getopt(argc, argv, "ht:o:m:M:n:N:p:"); if (c<0) break; switch (c) { case 't': outTreeName=std::string(optarg); break; case 'o': outFileName=std::string(optarg); break; case 'm': outMonitor=optarg; break; case 'M': outMass=std::atof(optarg); break; case 'n': totalNParticles=std::atoi(optarg); break; case 'N': freqParticles=std::atoi(optarg); break; case 'p': outPID=std::atoi(optarg); break; case 'h': PrintUsage(argv[0]); return 0; default: std::cout<<"Error: Unknown option "<AddMonitor(outMonitor.c_str()); int numberOfParciles = 0; for (std::vector::iterator inFile = inFileNames.begin(); inFile != inFileNames.end(); ++inFile){ FILE *fpin=fopen(inFile->c_str(),"r"); int event_number=0; while(1){ char line[1024]; if(fgets(line,sizeof(line),fpin)==0) break; if(line[0]=='#' || line[0]=='\n') continue; double x[3],p[3]; sscanf(line,"%lf %lf %lf %lf %lf %lf",&x[0],&x[1],&x[2],&p[0],&p[1],&p[2]); AddParticle(event_number,x,p, outMass, outPID); numberOfParciles++; if (numberOfParciles%freqParticles == 0) { fOutFile->Fill(); event_number++; } if (numberOfParciles%10000 == 0) { COMETLog("Processed " << numberOfParciles << " paricles"); } if (totalNParticles > 0 && numberOfParciles > totalNParticles) break; } fclose(fpin); } fOutFile->Close(); return 0; } /////////////////////////////////////////////////////////////////////////