]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
temporary fix for unwanted dependence from libANALYSIS
authorrpreghen <rpreghen@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 14 Jan 2010 16:27:42 +0000 (16:27 +0000)
committerrpreghen <rpreghen@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 14 Jan 2010 16:27:42 +0000 (16:27 +0000)
TOF/AliTOFT0v1.cxx

index d909ce3b1a998eebf13e73c07aaac075f9209317..47c3f02cc966b4ca5f2d52bc872dc4136a88d349 100644 (file)
@@ -176,6 +176,7 @@ Double_t * AliTOFT0v1::DefineT0(Option_t *option)
     time*=1.E-3; // tof given in nanoseconds      
     if (!(mom<=fUpperMomBound && mom>=fLowerMomBound))continue;
     
+#if 0
     AliESDtrackCuts* esdTrackCuts = new AliESDtrackCuts();
     Bool_t tpcRefit = kTRUE;
     Double_t nSigma = 4;
@@ -195,6 +196,7 @@ Double_t * AliTOFT0v1::DefineT0(Option_t *option)
     Bool_t accepted;
     accepted=esdTrackCuts->AcceptTrack(t);
     if(!accepted) continue;  
+#endif
 
     if(t->GetP() < fLowerMomBound || t->GetIntegratedLength() < 350 || t->GetTOFsignalToT() < 0.000000001)continue; //skip decays
     if(time <= mintime) mintime=time;
@@ -677,6 +679,7 @@ Double_t * AliTOFT0v1::DefineT0RawCorrection(Option_t *option)
     time*=1.E-3; // tof given in nanoseconds      
     if (!(mom<=fUpperMomBound && mom>=fLowerMomBound))continue;
     
+#if 0
     AliESDtrackCuts* esdTrackCuts = new AliESDtrackCuts();
     Bool_t tpcRefit = kTRUE;
     Double_t nSigma = 4;
@@ -696,6 +699,7 @@ Double_t * AliTOFT0v1::DefineT0RawCorrection(Option_t *option)
     Bool_t accepted;
     accepted=esdTrackCuts->AcceptTrack(t);
     if(!accepted) continue;  
+#endif
 
     if(t->GetP() < fLowerMomBound || t->GetIntegratedLength() < 350 || t->GetTOFsignalToT() < 0.000000001)continue; //skip decays
     if(time <= mintime) mintime=time;