Changeset 4895 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 09/09/04 15:43:47 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MParameters.cc
r4887 r4895 77 77 } 78 78 79 void MParameterD::Print(Option_t *o) const 80 { 81 *fLog << all << GetDescriptor() << ": Val=" << fVal << endl; 82 } 83 84 void MParameterDerr::Print(Option_t *o) const 85 { 86 *fLog << all << GetDescriptor() << ": Val=" << fVal << " Err=" << fErr << endl; 87 } 88 89 void MParameterI::Print(Option_t *o) const 90 { 91 *fLog << all << GetDescriptor() << ": Val=" << fVal << endl; 92 } -
trunk/MagicSoft/Mars/manalysis/MParameters.h
r4887 r4895 17 17 Double_t GetVal() const { return fVal; } 18 18 19 void Print(Option_t *o="") const; 20 19 21 ClassDef(MParameterD, 1) // Container to hold a generalized parameters (double) 20 22 }; … … 33 35 Double_t GetErr() const { return fErr; } 34 36 37 void Print(Option_t *o="") const; 38 35 39 ClassDef(MParameterDerr, 1) // Container to hold a generalized parameters (double) and its Error 36 40 }; … … 46 50 void SetVal(Int_t v) { fVal = v; } 47 51 Int_t GetVal() const { return fVal; } 52 53 void Print(Option_t *o="") const; 48 54 49 55 ClassDef(MParameterI, 1) // Container to hold a generalized parameters (integer)
Note:
See TracChangeset
for help on using the changeset viewer.