From: hristov Date: Tue, 8 Sep 2009 19:23:16 +0000 (+0000) Subject: Restore the changes from rev. 34587 X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=1e500f253e05678e4ee7695ac9586f2e2e7320a4 Restore the changes from rev. 34587 --- diff --git a/STEER/AliReconstruction.cxx b/STEER/AliReconstruction.cxx index ca1a5b1981b..3a1f7845c39 100644 --- a/STEER/AliReconstruction.cxx +++ b/STEER/AliReconstruction.cxx @@ -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; }