]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALSDigitizer.h
added the HCAL section and removed obsolete method
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALSDigitizer.h
index b0daf13f998944c0245697502904aa21ec917888..24acce0f8246965e91523454b66560c0136ad667 100644 (file)
@@ -2,17 +2,18 @@
 #define ALIEMCALSDigitizer_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
-
 /* $Id$ */
-
 //_________________________________________________________________________
 //  Task Class for making SDigits in EMCAL      
 //                  
 //*-- Author: Sahal Yacoob (LBL)
 // based on : AliPHOSSDigitizer
 //_________________________________________________________________________
-
-
+//
+// Modif: 
+//  August 2002 Yves Schutz: clone PHOS as closely as possible and intoduction
+//                           of new  IO (à la PHOS)
 // --- ROOT system ---
 #include "TTask.h"
 #include "TString.h"
@@ -24,43 +25,45 @@ class AliEMCALSDigitizer: public TTask {
 
 public:
   AliEMCALSDigitizer() ;          // ctor
-  AliEMCALSDigitizer(const char* HeaderFile,const char *SdigitsTitle = "Default") ; 
+  AliEMCALSDigitizer(const char* headerFile,const char* hdigitsTitle = "Default", const Bool_t toSplit = kFALSE) ; 
   virtual ~AliEMCALSDigitizer() ; // dtor
 
   Float_t  Calibrate(Int_t amp)const {return (amp - fA)/fB ; }
   Int_t    Digitize(Float_t Energy)const { return (Int_t ) ( fA + Energy*fB); }
-
   virtual void  Exec(Option_t *option); 
-  
-  Float_t  GetPedestalParameter()const {return fA;}
-  Float_t  GetCalibrationParameter()const{return fB;}
-  char *   GetSDigitsBranch()const{return (char*) fSDigitsTitle.Data();}  
-
-  virtual void Print(Option_t* option) const ;
-
-  void     SetPedestalParameter(Float_t A){fA = A ;}
-  void     SetSlopeParameter(Float_t B){fB = B ;}
-  void     SetSDigitsBranch(const char * title ) ;
-
-  Bool_t   operator == (const AliEMCALSDigitizer & sd) const ;
+  const char *  GetSDigitsBranch()const{return GetName();}  
+  const Int_t   GetSDigitsInRun() const {return fSDigitsInRun ;}  
+  const Float_t GetPedestalParameter()const {return fA;}
+  const Float_t GetCalibrationParameter()const{return fB;}
+  virtual void  Print(Option_t* option) const ;
+  void SetSDigitsBranch(const char * title ) ;
+  void SetPedestalParameter(Float_t A){fA = A ;}
+  void SetSlopeParameter(Float_t B){fB = B ;}
+  void UseHitsFrom(const char * filename) ;      
+  Bool_t operator == (const AliEMCALSDigitizer & sd) const ;
+//   const Int_t Segment2TowerID(Int_t SegmentID){
+//     return Layer2TowerID(SegmentID,0);
+// }
 
 private:
   void     Init() ;
+  void     InitParameters() ; 
   void     PrintSDigits(Option_t * option) ;
-  Int_t    Layer2TowerID(Int_t,Bool_t) ;
-private:
-  Float_t fA ;              //Pedestal parameter
-  Float_t fB ;              //Slope Digitizition parameters
-  Int_t   fNevents ;        // Number of events to digitize
-  Float_t fPrimThreshold ;  // To store primary if Elos > threshold
-  TString fSDigitsTitle ;   // title of SDigits branch
-  TString fHeadersFile ;    //input file
-  Bool_t         fIsInitialized ; 
-  TClonesArray * fSDigits ; //! list of SDigits
-  TClonesArray * fHits ;    //! 
 
-  ClassDef(AliEMCALSDigitizer,1)  // description 
+private:
+  Float_t fA ;                     // Pedestal parameter
+  Float_t fB ;                     // Slope Digitizition parameters
+  Float_t fPREPrimThreshold ;      // To store primary if Pre Shower Elos > threshold
+  Float_t fECPrimThreshold ;       // To store primary if EC Shower Elos > threshold
+  Float_t fHCPrimThreshold ;       // To store primary if HC Shower Elos > threshold
+  Bool_t  fDefaultInit;            //! Says if the task was created by defaut ctor (only parameters are initialized)
+  Int_t   fSDigitsInRun ;          //! Total number of sdigits in one run
+  TFile * fSplitFile ;             //! file in which SDigits will eventually be stored
+  Bool_t  fToSplit ;               //! Says that sigits should be written into splip file
+
+  ClassDef(AliEMCALSDigitizer,4)  // description 
 
 };
 
 #endif // AliEMCALSDigitizer_H
+