Changeset 3024


Ignore:
Timestamp:
02/05/04 15:16:08 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3023 r3024  
    44
    55                                                 -*-*- 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
    614 2004/02/05: Sebastian Raducci
    715
  • trunk/MagicSoft/Mars/macros/starmc2.C

    r3017 r3024  
    3838void starmc2()
    3939{
    40   Char_t* AnalysisFilename = "calib_gamma_mc.root"; // File to be analyzed
    41   Char_t* OutFilename      = "star_mc.root";        // Output file name
     40  Char_t* AnalysisFilename = "Calibrated_run.root"; // File to be analyzed
     41  Char_t* OutFilename      = "star.root";        // Output file name
    4242
    4343  Float_t CleanLev[2] = {4., 3.}; // Tail cuts for image analysis
     
    8686  MWriteRootFile write(OutFilename); // Writes output
    8787  write.AddContainer("MRawRunHeader", "RunHeaders");
    88   write.AddContainer("MMcRunHeader",  "RunHeaders");
     88  write.AddContainer("MMcRunHeader",  "RunHeaders", kFALSE);
    8989  write.AddContainer("MSrcPosCam",    "RunHeaders");
    90   write.AddContainer("MMcEvt",        "Events");
     90  write.AddContainer("MMcEvt",        "Events", kFALSE);
    9191  write.AddContainer("MHillas",       "Events");
    9292  write.AddContainer("MHillasExt",    "Events");
Note: See TracChangeset for help on using the changeset viewer.