]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Restore the changes from rev. 34587
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 8 Sep 2009 19:23:16 +0000 (19:23 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 8 Sep 2009 19:23:16 +0000 (19:23 +0000)
STEER/AliReconstruction.cxx

index ca1a5b1981b6a2550abce7660e469d28a9077e39..3a1f7845c39031e0cce728099e5b710e9086af39 100644 (file)
@@ -1042,8 +1042,8 @@ Bool_t AliReconstruction::InitGRP() {
     AliError("GRP/GRP/Data entry:  missing value for the beam energy ! Using 0");
     beamEnergy = 0;
   }
-  // energy is provided in MeV*120
-  beamEnergy /= 120E3;
+  // LHC: "multiply by 120 to get the energy in MeV"
+  beamEnergy *= 0.120;
 
   TString runType = fGRPData->GetRunType();
   if (runType==AliGRPObject::GetInvalidString()) {
@@ -2766,6 +2766,7 @@ AliReconstructor* AliReconstruction::GetReconstructor(Int_t iDet)
   if (reconstructor) {
     TObject* obj = fOptions.FindObject(detName.Data());
     if (obj) reconstructor->SetOption(obj->GetTitle());
+    reconstructor->SetRunInfo(fRunInfo);
     reconstructor->Init();
     fReconstructor[iDet] = reconstructor;
   }