]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFSDigitizer.h
Coding conventions (Annalisa)
[u/mrichter/AliRoot.git] / TOF / AliTOFSDigitizer.h
index c871f74756970a989204a6b116a53e92efd7a1df..d466be67b4fa5ec3b89957cd8eb95a432e4ad8d8 100644 (file)
@@ -7,36 +7,44 @@
 //_________________________________________________________________________
 //  Task Class for making SDigits in TOF      
 //                  
-//-- Author: F. Pierella
+//-- Authors: F. Pierella, A. De Caro
 
 
 #include "TTask.h"
 #include "TString.h"
-#include "AliTOF.h"
-#include "AliDetector.h"
+class AliRunLoader;
+class AliLoader;
 
+class AliTOFGeometry;
 class TF1;
 
 class AliTOFSDigitizer: public TTask {
 
 public:
   AliTOFSDigitizer() ;          // ctor
-  AliTOFSDigitizer(char* HeaderFile, char *SdigitsFile = 0) ; 
+  //AliTOFSDigitizer(const char* HeaderFile) ; // par ctor
+  AliTOFSDigitizer(const char* HeaderFile, Int_t evNumber1=-1, Int_t nEvents=0) ; // par ctor
+
+  AliTOFSDigitizer(const AliTOFSDigitizer &source); // copy constructor
+  AliTOFSDigitizer& operator=(const AliTOFSDigitizer &source); // ass. op.
 
   virtual ~AliTOFSDigitizer() ; // dtor
 
-//  char *GetSDigitsFile() const {return const_cast<char*>(fSDigitsFile.Data());}  
-  const char *GetSDigitsFile() const {return fSDigitsFile.Data();}  
-  virtual void  Exec(Option_t *option); 
-  void  SetNEvents(Int_t Nevents) {fNevents = Nevents;}
-  Int_t GetNEvents() const {return fNevents;}
-  void SetSDigitsFile(char * file ) ;
+  //static Float_t WidthTdcBin() {return fgkTdcBin;};
+
+  virtual void  Exec(Option_t *verboseOption); 
+  void SetSDigitsFile(char * /*file*/ ) {;}
+  
   void InitParameters();
   virtual void PrintParameters() const ;
-  virtual void  SimulateDetectorResponse(Float_t z0, Float_t x0, Float_t geantTime, Int_t& nActivatedPads, Int_t& nFiredPads, Bool_t* isFired, Int_t* nPlace, Float_t* qInduced, Float_t* tofTime, Float_t& averageTime);
-  virtual void Print(Option_t* option) const ;
-  TClonesArray *SDigits() const {return fSDigits;}
-  TClonesArray *Hits() const {return fHits;}
+  virtual void SimulateDetectorResponse(Float_t z0, Float_t x0, Float_t geantTime, Int_t& nActivatedPads, Int_t& nFiredPads, Bool_t* isFired, Int_t* nPlace, Float_t* qInduced, Float_t* tofTime, Float_t& averageTime);
+  virtual void Print(Option_t* opt) const ;
+  void  SetFirstEvent(Int_t event1)      {fEvent1 = event1;}
+  void  SetSecondEvent(Int_t event2)     {fEvent2 = event2;}
+  Int_t GetFirstEvent()  const {return fEvent1;}
+  Int_t GetSecondEvent() const {return fEvent2;}
+  Int_t GetNEvents() const {return (fEvent2-fEvent1);}
+  void  SelectSectorAndPlate(Int_t sector, Int_t plate);
 
   // setters and getters for detector simulation
   // it summarizes all it is known about TOF strip 
@@ -51,6 +59,7 @@ public:
   void  SetEffBoundary(Float_t effBoundary)          {fEffBoundary=effBoundary;}
   void  SetEff2Boundary(Float_t eff2Boundary)        {fEff2Boundary=eff2Boundary;}
   void  SetEff3Boundary(Float_t eff3Boundary)        {fEff3Boundary=eff3Boundary;}
+  void  SetAddTRes(Float_t addTRes)                  {fAddTRes=addTRes;}
   void  SetResCenter (Float_t resCenter)             {fResCenter=resCenter;}
   void  SetResBoundary(Float_t resBoundary)          {fResBoundary=resBoundary;}
   void  SetResSlope(Float_t resSlope)                {fResSlope=resSlope;}
@@ -67,6 +76,10 @@ public:
   void  SetTimeSmearing(Float_t timeSmearing)        {fTimeSmearing=timeSmearing;}
   void  SetAverageTimeFlag(Int_t averageTimeFlag)    {fAverageTimeFlag=averageTimeFlag;}
 
+  void  SetAdcBin(Float_t adcBin)                    {fAdcBin=adcBin;}
+  void  SetAdcMean(Float_t adcMean)                  {fAdcMean=adcMean;}
+  void  SetAdcRms(Float_t adcRms)                    {fAdcRms=adcRms;}
+
   Float_t  GetPadefficiency()    const {return fpadefficiency;}
   Int_t    GetEdgeEffect()       const {return fEdgeEffect;}
   Int_t    GetEdgeTails()        const {return fEdgeTails;}
@@ -78,6 +91,7 @@ public:
   Float_t  GetEffBoundary()      const {return fEffBoundary;}
   Float_t  GetEff2Boundary()     const {return fEff2Boundary;}
   Float_t  GetEff3Boundary()     const {return fEff3Boundary;}
+  Float_t  GetAddTRes ()         const {return fAddTRes;}
   Float_t  GetResCenter ()       const {return fResCenter;}
   Float_t  GetResBoundary()      const {return fResBoundary;}
   Float_t  GetResSlope()         const {return fResSlope;}
@@ -92,15 +106,27 @@ public:
   Float_t  GetLogChargeSmearing()const {return fLogChargeSmearing;}
   Float_t  GetTimeSmearing()     const {return fTimeSmearing;}
   Int_t    GetAverageTimeFlag()  const {return fAverageTimeFlag;}
+
+  Float_t  GetAdcBin()           const {return fAdcBin;}
+  Float_t  GetAdcMean()          const {return fAdcMean;}
+  Float_t  GetAdcRms()           const {return fAdcRms;}
   
 
+protected:
+
+
 private:
-  Int_t   fNevents;         // Number of events to digitize
-  TString fSDigitsFile;     // output file 
-  TClonesArray *fSDigits;   // array of summable digits
-  TClonesArray *fHits;      // array of summable digits
+  Int_t   fEvent1;          // lower bound for events to sdigitize
+  Int_t   fEvent2;          // upper bound for events to sdigitize
   TF1     *ftail;           // pointer to formula for time with tail
   TString fHeadersFile;     // input file
+  AliRunLoader* fRunLoader; //! Run Loader
+  AliLoader* fTOFLoader;    //! Loader
+
+  AliTOFGeometry* fTOFGeometry;  // Pointer to the TOF geometry
+
+  Int_t fSelectedSector;    // sector number for sdigitization
+  Int_t fSelectedPlate ;    // plate  number for sdigitization
 
   // detector response simulation
   // Intrisic MRPC time resolution and pad (edge effect) parameters
@@ -108,17 +134,19 @@ private:
   Float_t fpadefficiency;   // intrinsic pad efficiency, used if fEdgeEffect==0
   Int_t   fEdgeEffect;      // edge effects option
   Int_t   fEdgeTails;       // edge tails option
-  Float_t fHparameter;      // sensitive edge (to produce hits on the
-  // neighbouring pads) =0.7, new = 0.4 cm
+  Float_t fHparameter;      // sensitive edge (to produce hits on the neighbouring pads)
+                            //                 0.7 cm (old); 0.4 cm (new)
   Float_t fH2parameter;     // parameter to fit the efficiency
-  Float_t fKparameter;      // sensitive edge (going ahead towards the
-  // center no delay effects are suffered) =1.0, new = 0.5 cm
+  Float_t fKparameter;      // sensitive edge (going ahead towards the center
+                            // no delay effects are suffered) 1.0 cm (old); 0.5 cm (new)
   Float_t fK2parameter;     // parameter to fit the efficiency
   // Pad Efficiency and Resolution parameters
   Float_t fEffCenter;       // efficiency in the central region of the pad
   Float_t fEffBoundary;     // efficiency at the boundary of the pad
   Float_t fEff2Boundary;    // efficiency value at H2parameter
   Float_t fEff3Boundary;    // efficiency value at K2parameter
+  Float_t fAddTRes;         // additional contribution to 
+                            // the intrinsic MRPC time resolution (ps)
   Float_t fResCenter;       // resolution (ps) in the central region of the pad
   Float_t fResBoundary;     // resolution (ps)  at the boundary of the pad
   Float_t fResSlope;        // slope (ps/K) for neighbouring pad
@@ -139,10 +167,11 @@ private:
   Float_t fTimeSmearing;    // Smearing in time in time vs log(q1/q2) plot
   Int_t   fAverageTimeFlag; // flag (see the setter for details)
 
- protected:
-
+  Float_t fAdcBin;      // charge-window for the ADC bins [pC]
+  Float_t fAdcMean;     // mean value for the ADC spectrum [bins]
+  Float_t fAdcRms;      // rms value for the ADC spectrum [bins]
 
-  ClassDef(AliTOFSDigitizer,1)  // creates TOF SDigits
+  ClassDef(AliTOFSDigitizer,2)  // creates TOF SDigits
 
 };