]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Better use assignment operator instead of deleting and putting a new AliReconstructio...
authorcvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 15 Aug 2008 11:01:39 +0000 (11:01 +0000)
committercvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 15 Aug 2008 11:01:39 +0000 (11:01 +0000)
STEER/AliReconstruction.cxx

index 02dac7816a0cf85721c233c30a37ce808fa974bd..b83cf88de3a48f18955945bcff202ffc03132446 100644 (file)
@@ -1101,10 +1101,10 @@ void AliReconstruction::Begin(TTree *)
   // going into the event loop
   // Should follow the TSelector convention
   // i.e. initialize only the object on the client side
+  AliReconstruction *reco = NULL;
   if (fInput) {
-    if (AliReconstruction *reco = (AliReconstruction*)fInput->FindObject("AliReconstruction")) {
+    if (reco = (AliReconstruction*)fInput->FindObject("AliReconstruction")) {
       *this = *reco;
-      fInput->Remove(reco);
     }
     AliSysInfo::AddStamp("ReadInputInBegin");
   }
@@ -1153,12 +1153,12 @@ void AliReconstruction::Begin(TTree *)
   AliSysInfo::AddStamp("InitRecoParams");
 
   if (fInput) {
+    if (reco) *reco = *this;
     fInput->Add(gGeoManager);
     gGeoManager = NULL;
     fInput->Add(const_cast<TMap*>(AliCDBManager::Instance()->GetEntryCache()));
     fInput->Add(new TParameter<Int_t>("RunNumber",AliCDBManager::Instance()->GetRun()));
     fInput->Add((AliMagF*)AliTracker::GetFieldMap());
-    fInput->Add(this);
   }
 
 }