]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDReconstructor.cxx
QA update by Sylwester
[u/mrichter/AliRoot.git] / TRD / AliTRDReconstructor.cxx
index 8f39bb9f056012df435422f7f5f9407defa1b07f..fb506015059e20ac5b397203e0976cffc4697982 100644 (file)
@@ -80,8 +80,6 @@ void AliTRDReconstructor::Reconstruct(AliRawReader *rawReader
 
   AliInfo("Reconstruct TRD clusters from RAW data [RawReader -> Cluster TTree]");
 
-       // TODO move it to rec.C. check TPC
-       if (!fgRecoParam) fgRecoParam = AliTRDrecoParam::GetLowFluxParam();
 
   rawReader->Reset();
   rawReader->Select("TRD");
@@ -104,9 +102,6 @@ void AliTRDReconstructor::Reconstruct(TTree *digitsTree
 
   AliInfo("Reconstruct TRD clusters from Digits [Digit TTree -> Cluster TTree]");
 
-       // TODO move it to rec.C. check TPC
-  if (!fgRecoParam) fgRecoParam = AliTRDrecoParam::GetLowFluxParam();
-
   AliTRDclusterizer clusterer("clusterer","TRD clusterizer");
   clusterer.OpenOutput(clusterTree);
   clusterer.ReadDigits(digitsTree);
@@ -123,8 +118,6 @@ AliTracker *AliTRDReconstructor::CreateTracker() const
 
   //return new AliTRDtracker(NULL);
 
-       // TODO move it to rec.C. check TPC
-       if (!fgRecoParam) fgRecoParam = AliTRDrecoParam::GetLowFluxParam();
   return new AliTRDtrackerV1();
 
 }