Coding convention: RN11 violation -> suppression
authordecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 3 May 2007 09:45:09 +0000 (09:45 +0000)
committerdecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 3 May 2007 09:45:09 +0000 (09:45 +0000)
TOF/AliTOFDataDCS.cxx
TOF/AliTOFDataDCS.h
TOF/AliTOFtracker.cxx
TOF/AliTOFtracker.h

index 0bbb3b1f23830390d53a1be90f1f07627615b592..7a6f06e68d805206f96cd3cf2563323b5581c9c6 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.7  2007/05/02 14:09:39  arcelli
+Retrieval of Env. Temperature removed (will get it from the GRP)
+
 Revision 1.6  2007/04/04 17:19:19  arcelli
 Moved some printout to debug level
 
@@ -658,7 +661,7 @@ void AliTOFDataDCS::Introduce(UInt_t numAlias, const TObjArray* aliasArr)const
 }
 
 //---------------------------------------------------------------
-void AliTOFDataDCS::Draw(const Option_t* /*option*/) /*const*/
+void AliTOFDataDCS::Draw(const Option_t* /*option*/) const
 {
 // Draw all histos and graphs
 
index 4d925449a01cf7351093ce9d23643b5e4e205d2d..ce4288600c3defb79260cf0e976152fa84e05b0b 100644 (file)
@@ -46,7 +46,7 @@ public:
   const char* GetAliasName(Int_t pos) const 
     {return pos<kNAliases ? fAliasNames[pos].Data() : 0;}
   
-  void Draw(const Option_t* option) /*const*/;
+  void Draw(const Option_t* /*option*/) const;
   
   AliTOFFormatDCS* GetHVvp(Int_t pos) const
     {return pos<kNHV ? fHVvp[pos] : 0;}
index 4267a91f32bec33b0242799ec230a027a04a752f..fc5054cfbd795f127b5faa36fee7bb020c6385f1 100644 (file)
@@ -940,14 +940,14 @@ Float_t AliTOFtracker::CorrectTimeWalk( Float_t dist, Float_t tof) {
   return tofcorr;
 }
 //_________________________________________________________________________
-Float_t AliTOFtracker::GetTimeZerofromT0(AliESD *event) {
+Float_t AliTOFtracker::GetTimeZerofromT0(AliESD *event) const {
 
   //Returns TimeZero as measured by T0 detector
 
   return event->GetT0();
 }
 //_________________________________________________________________________
-Float_t AliTOFtracker::GetTimeZerofromTOF(AliESD *event) {
+Float_t AliTOFtracker::GetTimeZerofromTOF(AliESD * /*event*/) const {
 
   //dummy, for the moment. T0 algorithm using tracks on TOF
   {
index ccf1c1a9c264646d4cfeb1c73c0b76e193d6dcd1..82119d75210bea60aa7d3cc9191ed7ea97203116 100644 (file)
@@ -58,8 +58,8 @@ private:
   Int_t FindClusterIndex(Double_t z) const; // Returns cluster index 
   void  MatchTracks(Bool_t mLastStep); // Matching Algorithm 
   void  CollectESD(); // Select starting Set for Matching 
-  Float_t  GetTimeZerofromTOF(AliESD* event); // T0 from TOF
-  Float_t  GetTimeZerofromT0(AliESD* event); // T0 from T0
+  Float_t  GetTimeZerofromTOF(AliESD* /*event*/) const; // T0 from TOF
+  Float_t  GetTimeZerofromT0(AliESD* event) const; // T0 from T0
   Float_t  CorrectTimeWalk(Float_t dist,Float_t tof); // Time Walk correction
 
   AliTOFRecoParam* fRecoParam;           // Pointer to TOF Recon. Pars