Changeset 6893 for trunk/MagicSoft/Mars/mranforest
- Timestamp:
- 03/29/05 11:42:04 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mranforest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mranforest/MRanForestCalc.cc
r6530 r6893 49 49 #include "MRanForest.h" 50 50 51 #include "M Hadronness.h"51 #include "MParameters.h" 52 52 53 53 #include "MEvtLoop.h" … … 143 143 } 144 144 145 fHadroness = (M Hadronness*)plist->FindCreateObj("MHadronness", fHadronnessName);145 fHadroness = (MParameterD*)plist->FindCreateObj("MParameterD", fHadronnessName); 146 146 if (!fHadroness) 147 147 return kFALSE; … … 160 160 161 161 Double_t hadroness=fRanForest->CalcHadroness(event); 162 fHadroness->Set Hadronness(hadroness);162 fHadroness->SetVal(hadroness); 163 163 164 164 return kTRUE; -
trunk/MagicSoft/Mars/mranforest/MRanForestCalc.h
r5690 r6893 11 11 12 12 class MParList; 13 class M Hadronness;13 class MParameterD; 14 14 class MDataArray; 15 15 class MRanTree; … … 23 23 TString fHadronnessName; // Name of container storing hadronness 24 24 25 M Hadronness*fHadroness; //! Output container for calculated hadroness25 MParameterD *fHadroness; //! Output container for calculated hadroness 26 26 MDataArray *fData; //! Used to store the MDataChains to get the event values 27 27 MRanForest *fRanForest;
Note:
See TracChangeset
for help on using the changeset viewer.