]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MFT/AliMFTReconstructor.cxx
remove debug message
[u/mrichter/AliRoot.git] / MFT / AliMFTReconstructor.cxx
index b07dfa03efdabcb5ab7fe88b385f2ad9ef76c1d6..81054fb27ca988c848e729a1a00be3e9701299f5 100644 (file)
@@ -128,8 +128,6 @@ void AliMFTReconstructor::Reconstruct(TTree *digitsTree, TTree *clustersTree) co
 
   // Clusterization
 
-  AliDebug(1, Form("nPlanes = %d",fNPlanes));
-
   for (Int_t iPlane=0; iPlane<fNPlanes; iPlane++) {
     AliDebug(1, Form("Setting Address for Branch Plane_%02d", iPlane)); 
     digitsTree->SetBranchAddress(Form("Plane_%02d",iPlane), &(*fDigits)[iPlane]);
@@ -139,16 +137,12 @@ void AliMFTReconstructor::Reconstruct(TTree *digitsTree, TTree *clustersTree) co
 
   AliDebug(1, "Creating clusterFinder");
   AliMFTClusterFinder *clusterFinder = new AliMFTClusterFinder();
+  clusterFinder->ApplyMisalignment(kTRUE);    // only in case of MC !!!
   clusterFinder->Init("AliMFTGeometry.root");
-  AliDebug(1, "clusterFinder->MakeClusterBranch(clustersTree)");
   clusterFinder->MakeClusterBranch(clustersTree);
-  AliDebug(1, "clusterFinder->SetClusterTreeAddress(clustersTree)");
   clusterFinder->SetClusterTreeAddress(clustersTree);
-  AliDebug(1, "clusterFinder->DigitsToClusters(fDigits)");
   clusterFinder->DigitsToClusters(fDigits);
-  AliDebug(1, "clustersTree->Fill()");
   clustersTree->Fill();                         // fill tree for current event
-  AliDebug(1, "delete clusterFinder");
   delete clusterFinder;
 
   for (Int_t iPlane=0; iPlane<fNPlanes; iPlane++) {