Changeset 17736
- Timestamp:
- 04/29/14 19:49:36 (11 years ago)
- Location:
- trunk/Mars/fact/analysis/mc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/fact/analysis/mc/callisto.C
r17699 r17736 36 36 #include "MContinue.h" 37 37 #include "MRawFitsRead.h" 38 #include "MReadMarsFile.h" 38 39 #include "MEvtLoop.h" 39 40 #include "MParList.h" … … 530 531 // ------------------ Setup the tasks --------------- 531 532 532 MRawFitsRead read5; 533 read5.LoadMap(map); 534 read5.AddFile(datfile); 533 MRawFitsRead read5a; 534 MReadMarsFile read5b("Events"); 535 read5a.LoadMap(map); 536 read5a.AddFile(datfile); 537 read5b.DisableAutoScheme(); 538 read5b.AddFile(datfile); 539 540 MRead &read5 = datfile.EndsWith(".root") ? static_cast<MRead&>(read5b) : static_cast<MRead&>(read5a); 535 541 536 542 MFillH fill5a(&hrate); … … 649 655 write5.AddContainer("MPointingPos", "Events", kFALSE); 650 656 write5.AddContainer("MSignalCam", "Events"); 651 write5.AddContainer("MTime", "Events" );657 write5.AddContainer("MTime", "Events", kFALSE); 652 658 write5.AddContainer("MRawEvtHeader", "Events"); 653 659 //write.AddContainer("MTriggerPattern", "Events"); -
trunk/Mars/fact/analysis/mc/star.C
r17699 r17736 322 322 323 323 MWriteRootFile write(outfile, "RECREATE", "Image parameters", 2); 324 write.AddContainer("MTime", "Events" );324 write.AddContainer("MTime", "Events", kFALSE); 325 325 write.AddContainer("MHillas", "Events"); 326 326 write.AddContainer("MHillasExt", "Events");
Note:
See TracChangeset
for help on using the changeset viewer.