Changeset 3024
- Timestamp:
- 02/05/04 15:16:08 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3023 r3024 4 4 5 5 -*-*- END OF LINE -*-*- 6 2004/02/05: Abelardo Moralejo 7 8 * macros/starmc2.C 9 - added 3rd argument, "kFALSE", to call of MWriteRootFile::Add 10 for both MMcEvt and MMcRunHeader since these containers are 11 not present in real data. Name of macro is no longer adequate if 12 we will use it for calibrated real data (to be changed if so). 13 6 14 2004/02/05: Sebastian Raducci 7 15 -
trunk/MagicSoft/Mars/macros/starmc2.C
r3017 r3024 38 38 void starmc2() 39 39 { 40 Char_t* AnalysisFilename = " calib_gamma_mc.root"; // File to be analyzed41 Char_t* OutFilename = "star _mc.root"; // Output file name40 Char_t* AnalysisFilename = "Calibrated_run.root"; // File to be analyzed 41 Char_t* OutFilename = "star.root"; // Output file name 42 42 43 43 Float_t CleanLev[2] = {4., 3.}; // Tail cuts for image analysis … … 86 86 MWriteRootFile write(OutFilename); // Writes output 87 87 write.AddContainer("MRawRunHeader", "RunHeaders"); 88 write.AddContainer("MMcRunHeader", "RunHeaders" );88 write.AddContainer("MMcRunHeader", "RunHeaders", kFALSE); 89 89 write.AddContainer("MSrcPosCam", "RunHeaders"); 90 write.AddContainer("MMcEvt", "Events" );90 write.AddContainer("MMcEvt", "Events", kFALSE); 91 91 write.AddContainer("MHillas", "Events"); 92 92 write.AddContainer("MHillasExt", "Events");
Note:
See TracChangeset
for help on using the changeset viewer.