Changeset 9178
- Timestamp:
- 11/27/08 11:41:12 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9177 r9178 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/11/27 Thomas Bretz 22 23 * mbase/MContinue.[h,cc]: 24 - updated ClassVersion number according to last change 25 26 * mraw/MRawFilesRead.cc: 27 - fixed a bug when errno==0 28 29 * mjobs/MJStar.cc: 30 - in case of sum trigger skip only events with only sum-trigger not 31 all events with sum-trigger for effective on time calculation 32 33 20 34 21 35 2008/11/24 Daniela Dorner -
trunk/MagicSoft/Mars/NEWS
r9168 r9178 70 70 the ratio with which pedestal events or events with signals 71 71 are contained in the data. 72 73 ;star 74 75 * For the calculation of the effective on time all sum-triggered events 76 were skipped. Now all Level1-triggeres events will pass. This might 77 result in a slight inaccuracy of the effective on time. 72 78 73 79 ;ganymed -
trunk/MagicSoft/Mars/mbase/MContinue.cc
r9157 r9178 33 33 // To invert the meaning of the contained filter call SetInverted() 34 34 // 35 // 35 36 // Input Containers: 36 37 // -/- … … 38 39 // Output Containers: 39 40 // -/- 41 // 42 // 43 // Class Version 2: 44 // ---------------- 45 // + Int_t fRc; 40 46 // 41 47 ///////////////////////////////////////////////////////////////////////////// -
trunk/MagicSoft/Mars/mbase/MContinue.h
r9157 r9178 25 25 MTaskList *fTaskList; //! pointer to the present tasklist 26 26 27 Int_t fRc; 27 Int_t fRc; // Return code returned in Process() 28 28 29 29 // MTask … … 57 57 void Print(Option_t *o="") const; //*MENU* 58 58 59 ClassDef(MContinue, 1) //Task returning kCONTINUE59 ClassDef(MContinue, 2) //Task returning kCONTINUE 60 60 }; 61 61 -
trunk/MagicSoft/Mars/mjobs/MJStar.cc
r9157 r9178 270 270 MFTriggerPattern fsum; 271 271 fsum.SetDefault(kTRUE); 272 fsum.DenySumTrigger(); 273 fsum.AllowTriggerLvl1(); 274 //fsum.RequireTriggerLvl1(); 272 fsum.DenyAll(); 273 fsum.RequireTriggerLvl1(); 274 fsum.AllowTriggerLvl2(); 275 fsum.AllowSumTrigger(); 275 276 fill9.SetFilter(&fsum); 276 277 -
trunk/MagicSoft/Mars/mraw/MRawFileRead.cc
r8352 r9178 194 194 { 195 195 *fLog << err << "Cannot open file " << expname << ": "; 196 *fLog << (errno ==0?strerror(errno):"Insufficient memory for decompression") << endl;196 *fLog << (errno!=0?strerror(errno):"Insufficient memory for decompression") << endl; 197 197 } 198 198 else
Note:
See TracChangeset
for help on using the changeset viewer.