Changeset 6932 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 04/12/05 17:05:49 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h
r6915 r6932 12 12 #pragma link C++ class MMultiDimDistCalc+; 13 13 14 #pragma link C++ class MEnergyEst+;15 14 #pragma link C++ class MEnergyEstimate+; 16 15 -
trunk/MagicSoft/Mars/manalysis/MEnergyEstimate.cc
r5956 r6932 47 47 48 48 #include "MDataChain.h" 49 #include "M EnergyEst.h"49 #include "MParameters.h" 50 50 51 51 #include "MLog.h" … … 107 107 Int_t MEnergyEstimate::PreProcess(MParList *plist) 108 108 { 109 fEnergy = (M EnergyEst*)plist->FindCreateObj("MEnergyEst");109 fEnergy = (MParameterD*)plist->FindCreateObj("MParameterD", "MEnergyEst"); 110 110 if (!fEnergy) 111 111 return kFALSE; … … 130 130 return kCONTINUE; 131 131 132 fEnergy->Set Energy(val);132 fEnergy->SetVal(val); 133 133 fEnergy->SetReadyToSave(); 134 134 return kTRUE; 135 } 136 137 // -------------------------------------------------------------------------- 138 // 139 // Print the rule used for energy estimation 140 // 141 void MEnergyEstimate::Print(Option_t *o) const 142 { 143 *fLog << all << GetDescriptor() << ":"; 144 if (!fData) 145 *fLog << " <n/a>" << endl; 146 else 147 *fLog << endl << fData->GetRule() << endl; 135 148 } 136 149 -
trunk/MagicSoft/Mars/manalysis/MEnergyEstimate.h
r5956 r6932 7 7 8 8 class MData; 9 class M EnergyEst;9 class MParameterD; 10 10 11 11 class MEnergyEstimate : public MTask 12 12 { 13 13 private: 14 MData *fData; //->15 M EnergyEst *fEnergy;14 MData *fData; //-> 15 MParameterD *fEnergy; //! 16 16 17 17 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE); … … 28 28 void SetVariables(const TArrayD &); 29 29 30 ClassDef(MEnergyEstimate, 0) // Task to estimate the energy by a rule 30 void Print(Option_t *o="") const; 31 32 ClassDef(MEnergyEstimate, 1) // Task to estimate the energy by a rule 31 33 }; 32 34 -
trunk/MagicSoft/Mars/manalysis/Makefile
r6915 r6932 28 28 SRCFILES = MGeomApply.cc \ 29 29 MCameraData.cc \ 30 MEnergyEst.cc \31 30 MEnergyEstimate.cc \ 32 31 MMatrixLoop.cc \
Note:
See TracChangeset
for help on using the changeset viewer.