Changeset 1542 for trunk/MagicSoft/Mars
- Timestamp:
- 10/16/02 10:40:39 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1540 r1542 1 1 -*-*- END -*-*- 2 2002/10/16: Thomas Bretz 3 4 * macros/readMagic.C: 5 - added MPrint for MRawEvtHeader 6 - changed to MPrint to new Skip-Style 7 8 * manalysis/MHillasCalc.cc, manalysis/MHillasSrcCalc.cc: 9 - corrected output stream in case of hex or setfill was used 10 11 * mbase/MPrint.[h,cc]: 12 - introduced new behaviour of PreProcess (EnableSkip) 13 14 * mbase/MTaskList.cc: 15 - fixed a bug in Process which caused Histograms to be written 16 after each event 17 18 * meventdisp/MGEvtDisplay.cc: 19 - introduced printing of MRawEvtHeader 20 21 * mmc/MMcEvt.cxx: 22 - some small changes 23 - changed Print output from cout to fLog 24 - changes to the default values 25 26 * mraw/MRawEvtHeader.[h,cc]: 27 - removed the second empty line after Print 28 - added Getter-function for the DAQEvtNumber 29 30 31 2 32 2002/10/15: Thomas Bretz 3 33 -
trunk/MagicSoft/Mars/macros/readMagic.C
r1540 r1542 58 58 plist.AddToList(&tlist); 59 59 60 MReadMarsFile 60 MReadMarsFile read("Events", fname); 61 61 read.DisableAutoScheme(); 62 62 63 MPrint print("MMcEvt"); 63 MPrint print1("MMcEvt"); 64 MPrint print2("MRawEvtHeader"); 65 print1.EnableSkip(); 66 print2.EnableSkip(); 67 64 68 MMcPedestalCopy pcopy; 65 69 MMcPedestalNSBAdd pnsb; … … 73 77 74 78 tlist.AddToList(&read); 75 tlist.AddToList(&print); 79 tlist.AddToList(&print1); 80 tlist.AddToList(&print2); 76 81 tlist.AddToList(&pcopy); 77 82 tlist.AddToList(&pnsb); -
trunk/MagicSoft/Mars/manalysis/MHillasCalc.cc
r1540 r1542 125 125 *fLog << inf << endl; 126 126 *fLog << GetDescriptor() << " execution statistics:" << endl; 127 *fLog << dec << setfill(' '); 127 128 *fLog << " " << setw(7) << fErrors[1] << " (" << setw(3) << (int)(fErrors[1]*100/GetNumExecutions()) << "%) Evts skipped due to: Event has less than 3 pixels" << endl; 128 129 *fLog << " " << setw(7) << fErrors[2] << " (" << setw(3) << (int)(fErrors[2]*100/GetNumExecutions()) << "%) Evts skipped due to: Calculated Size == 0" << endl; -
trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.cc
r1540 r1542 122 122 *fLog << inf << endl; 123 123 *fLog << GetDescriptor() << " execution statistics:" << endl; 124 *fLog << dec << setfill(' '); 124 125 *fLog << " " << fErrors << " (" << (int)(fErrors*100/GetNumExecutions()) << "%) Evts skipped due to: Dist==0" << endl; 125 126 *fLog << endl; -
trunk/MagicSoft/Mars/mbase/MPrint.cc
r1080 r1542 67 67 // must be overloaded. You can also set an option string to use 68 68 // when calling TObject::Print 69 // If you want that the MPrint instance is removed from the tasklist 70 // if the container to be printed is not found in the PreProcess, call: 71 // MPrint::EnableSkip(); 69 72 // 70 73 MPrint::MPrint(const char *obj, const char *option, … … 84 87 // must be overloaded. You can also set an option string to use 85 88 // when calling TObject::Print 89 // if the container to be printed is not found in the PreProcess, call: 90 // MPrint::EnableSkip(); 86 91 // 87 92 MPrint::MPrint(const TObject *obj, const char *option, … … 118 123 // If it couldn't get found stop Eventloop 119 124 // 120 *fLog << err << dbginf << fObjName << " not found... aborting." << endl; 121 return kFALSE; 125 *fLog << err << dbginf << fObjName << " not found... "; 126 if (TestBit(kSKIP)) 127 { 128 *fLog << "removing task from list." << endl; 129 return kSKIP; 130 } 131 else 132 { 133 *fLog << "aborting." << endl; 134 return kFALSE; 135 } 122 136 } 123 137 -
trunk/MagicSoft/Mars/mbase/MPrint.h
r1014 r1542 15 15 TString fOption; // Print option 16 16 17 enum { kSkip = BIT(14) }; 18 17 19 void Init(const char *name, const char *title); 18 20 … … 22 24 23 25 void SetOption(Option_t *option) { fOption = option; } 26 void EnableSkip(Bool_t skip=kTRUE) { skip ? SetBit(kSkip) : ResetBit(kSkip); } 24 27 25 28 Bool_t PreProcess(MParList *pList); -
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r1540 r1542 380 380 if (!noreset) 381 381 { 382 fParList->SetReadyToSave( );382 fParList->SetReadyToSave(kFALSE); 383 383 fParList->Reset(); 384 384 fParList->SetBit(MParList::kDoNotReset); -
trunk/MagicSoft/Mars/meventdisp/MGEvtDisplay.cc
r1540 r1542 46 46 #include "MReadMarsFile.h" 47 47 #include "MGeomCamMagic.h" 48 #include "MRawEvtHeader.h" 48 49 49 50 #include "MMcEvt.hxx" … … 484 485 txt += "PhEl"; 485 486 487 const MRawEvtHeader *hed = (MRawEvtHeader*)GetParList()->FindObject("MRawEvtHeader"); 488 if (hed) 489 { 490 txt += " DAQEvt #"; 491 txt += hed->GetDAQEvtNumber(); 492 } 493 486 494 fEvtInfo->SetText(txt); 487 495 } -
trunk/MagicSoft/Mars/mraw/MRawEvtHeader.cc
r1082 r1542 214 214 } 215 215 } 216 217 *fLog << endl;218 216 *fLog << endl; 219 217 } -
trunk/MagicSoft/Mars/mraw/MRawEvtHeader.h
r1018 r1542 54 54 55 55 UShort_t GetTrigType() const { return fTrigType; } 56 UInt_t GetDAQEvtNumber() const { return fDAQEvtNumber; } 56 57 57 58 int ReadEvt(istream& fin);
Note:
See TracChangeset
for help on using the changeset viewer.