New function SetDebugLevel(Int_t)
authormartinez <martinez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 9 Nov 2000 15:49:25 +0000 (15:49 +0000)
committermartinez <martinez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 9 Nov 2000 15:49:25 +0000 (15:49 +0000)
PHOS/AliPHOS.cxx
PHOS/AliPHOS.h

index deb0b5bd236470d4d40da715b6acda79ccc82401..45c7442b7cdfb31f4097fbb138963929c0a93793 100644 (file)
@@ -58,6 +58,7 @@ AliPHOS::AliPHOS(const char* name, const char* title): AliDetector(name,title)
   fPpsdRecPoints = new AliPHOSRecPoint::RecPointsList(10) ;
   fTrackSegments = new AliPHOSTrackSegment::TrackSegmentsList("AliPHOSTrackSegment", 10) ;
   fRecParticles  = new AliPHOSRecParticle::RecParticlesList("AliPHOSRecParticle", 10) ;
+  fDebugLevel    = 0;
   
 }
 //____________________________________________________________________________
index e9fd3c4d3081db8eab7428c4fbd833254bc75c3a..672293d3194216ee5d466222703d9c52829ac419 100644 (file)
@@ -66,6 +66,7 @@ class AliPHOS : public AliDetector {
     assert(0==1) ;
     return *this ; 
   }
+  void SetDebugLevel(Int_t deb) {fDebugLevel = deb;}
  
  protected:
   
@@ -73,6 +74,7 @@ class AliPHOS : public AliDetector {
   AliPHOSRecPoint::RecPointsList * fPpsdRecPoints ;        // The RecPoints (clusters) list in PPSD (veto)
   AliPHOSTrackSegment::TrackSegmentsList * fTrackSegments ;// The TrackSegment list in PHOS
   AliPHOSRecParticle::RecParticlesList * fRecParticles ;   // The reconstructed particles list in PHOS
+  Int_t  fDebugLevel ;                                     // Debug level
 
 
   ClassDef(AliPHOS,2) // Photon Spectrometer Detector (base class)