Changeset 2100
- Timestamp:
- 05/09/03 10:19:36 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2099 r2100 1 1 -*-*- END OF LINE -*-*- 2 3 2003/05/09: Thomas Bretz 4 5 * mbase/MLog.cc: 6 - do not underline if eNoColors is set 7 8 * mbase/MLogManip.cc: 9 - removed an obsolete comment 10 11 * mfileio/MReadTree.cc: 12 - print warning in case no files could be added to chain 13 14 * mfilter/MFDataChain.h: 15 - fixed code layout 16 17 * mimage/MHHillasSrc.h: 18 - added Paint 19 20 * mimage/MHillasCalc.[h,cc]: 21 - changed default title 22 23 2 24 3 25 2003/05/08: Thomas Bretz -
trunk/MagicSoft/Mars/mbase/MLogManip.cc
r1080 r2100 50 50 // 51 51 MLog *log=(MLog*)lout.rdbuf(); 52 // cout << " -" << i << "- ";53 52 log->SetOutputLevel(i); 54 53 return lout; -
trunk/MagicSoft/Mars/mfileio/MReadTree.cc
r1936 r2100 240 240 SetBit(kChainWasChanged); 241 241 242 *fLog << warn << "WARNING: No files '" << fname << "' added to " << GetDescriptor() << endl; 243 242 244 return numfiles; 243 245 } -
trunk/MagicSoft/Mars/mfilter/MFDataChain.h
r1661 r2100 32 32 public: 33 33 MFDataChain(const char *member, const char type, const Double_t val, 34 34 const char *name=NULL, const char *title=NULL); 35 35 36 36 Bool_t IsExpressionTrue() const { return fResult; } -
trunk/MagicSoft/Mars/mimage/MHHillasSrc.h
r2043 r2100 36 36 37 37 void Draw(Option_t *opt=NULL); 38 void Paint(Option_t *opt); 39 38 40 39 41 ClassDef(MHHillasSrc, 1) // Container which holds histograms for the source dependant parameters -
trunk/MagicSoft/Mars/mimage/MHillasCalc.cc
r2029 r2100 78 78 { 79 79 fName = name ? name : "MHillasCalc"; 80 fTitle = title ? title : "Calculate Hillas parameters";80 fTitle = title ? title : "Calculate Hillas and other image parameters"; 81 81 } 82 82 -
trunk/MagicSoft/Mars/mimage/MHillasCalc.h
r2027 r2100 60 60 Bool_t TestFlag(CalcCont_t i) const { return fFlags&i; } 61 61 62 ClassDef(MHillasCalc, 0) // Task to calculate Hillasparameters62 ClassDef(MHillasCalc, 0) // Task to calculate Hillas and other image parameters 63 63 }; 64 64
Note:
See TracChangeset
for help on using the changeset viewer.