]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixed warnings regarding par file compilation
authorkaamodt <kaamodt@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 20 Jul 2010 12:13:09 +0000 (12:13 +0000)
committerkaamodt <kaamodt@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 20 Jul 2010 12:13:09 +0000 (12:13 +0000)
PWG4/GammaConv/AliAnalysisTaskGammaConversion.cxx
PWG4/GammaConv/AliV0Reader.h

index b67754343457761c8070dffef69acbbd492351a2..ec36e6b0d34b745b00c5b78e2c4fd4eba9035aec 100644 (file)
@@ -265,7 +265,7 @@ void AliAnalysisTaskGammaConversion::SetESDtrackCuts()
 
   //------- To be tested-----------
   
-   Double_t minNClustersTPC = 70;
+   Int_t minNClustersTPC = 70;
    Double_t maxChi2PerClusterTPC = 4.0;
    Double_t maxDCAtoVertexXY = 2.4; // cm
    Double_t maxDCAtoVertexZ  = 3.2; // cm
index 817381a3be360ab00459cfbfe7c6de30e0bf39c0..0c96c49e29f3b8c0e07bec988ac9e9c7aa7472cd 100644 (file)
@@ -414,22 +414,22 @@ class AliV0Reader : public TObject {
   /*
    * Gets the Number of the TPC clusters of the negative track.
    */
-  Double_t GetNegativeTracknTPCClusters() const{return fCurrentNegativeESDTrack->GetNcls(1);}
+  Int_t GetNegativeTracknTPCClusters() const{return fCurrentNegativeESDTrack->GetNcls(1);}
 
   /*
    * Gets the Number of the TPC clusters of the positive track.
    */
-  Double_t GetPositiveTracknTPCClusters() const{return fCurrentPositiveESDTrack->GetNcls(1);}
+  Int_t GetPositiveTracknTPCClusters() const{return fCurrentPositiveESDTrack->GetNcls(1);}
        
   /*
    * Gets the Number of the ITS clusters of the negative track.
    */
-  Double_t GetNegativeTracknITSClusters() const{return fCurrentNegativeESDTrack->GetNcls(0);}
+  Int_t GetNegativeTracknITSClusters() const{return fCurrentNegativeESDTrack->GetNcls(0);}
 
   /*
    * Gets the Number of the ITS clusters of the positive track.
    */
-  Double_t GetPositiveTracknITSClusters() const{return fCurrentPositiveESDTrack->GetNcls(0);}
+  Int_t GetPositiveTracknITSClusters() const{return fCurrentPositiveESDTrack->GetNcls(0);}
        
   /*
    * Update data which need to be updated every event.