Changeset 763 for trunk/MagicSoft
- Timestamp:
- 04/23/01 14:51:15 (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mraw/MRawFileWrite.cc
r749 r763 49 49 ClassImp(MRawFileWrite) 50 50 51 // -------------------------------------------------------------------------- 52 // 53 // Default constructor. It opens the output file (root-file) 54 // 51 55 MRawFileWrite::MRawFileWrite(const char *fname, Option_t *opt, 52 56 const char *ftitle, Int_t comp, … … 73 77 } 74 78 79 // -------------------------------------------------------------------------- 80 // 81 // The PreProcess function checks for the following input containers: 82 // - MRawEvtHeader 83 // - MRawEvtData 84 // - MRawCrateArray 85 // - MRawEvtTime <MTime> 86 // - MRawRunHeader 87 // if a container isn't found the eventloop is stopped. 88 // 89 // The tree which should containe the run header is created. <RunHeaders> 90 // The trees which contains the Events <Events>, <PedEvents>, <CalEvents> 91 // are created. 92 // 75 93 Bool_t MRawFileWrite::PreProcess (MParList *pList) 76 94 { … … 156 174 } 157 175 176 // -------------------------------------------------------------------------- 177 // 178 // Gets the trigger type from the run header to decide into which tree the 179 // event should be filled in and fills it into this tree. 180 // 158 181 Bool_t MRawFileWrite::Process() 159 182 { … … 187 210 } 188 211 212 213 // -------------------------------------------------------------------------- 214 // 215 // Close the TFile object and delete it. 216 // 189 217 Bool_t MRawFileWrite::PostProcess() 190 218 {
Note:
See TracChangeset
for help on using the changeset viewer.