]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/EMCALbase/AliEMCAL.h
EMCAL/DCAL Trigger Mapping for Run 2
[u/mrichter/AliRoot.git] / EMCAL / EMCALbase / AliEMCAL.h
1 #ifndef ALIEMCAL_H
2 #define ALIEMCAL_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice     */
5
6 /* $Id$ */
7 /* History of cvs commits:
8  *
9  * $Log$
10  * Revision 1.43  2007/03/10 22:19:01  pavlinov
11  * move one varibels from AliEMCALv2 to AliEMCAL
12  *
13  * Revision 1.42  2007/02/24 20:42:35  pavlinov
14  * fixed error of Geant3 parameters initialisation
15  *
16  * Revision 1.41  2007/02/05 10:43:25  hristov
17  * Changes for correct initialization of Geant4 (Mihaela)
18  *
19  * Revision 1.40  2006/12/05 17:19:26  gustavo
20  * Updated AliEMCAL::Digits2Raw, reads first provisional RCU mapping files to make Raw data with new AliCaloAltroMapping and AliCaloRawStream
21  *
22  *
23  */
24 //_________________________________________________________________________
25 //  Base Class for EMCAL     
26 //  holds all geant information of
27 //  materials, etc.
28 //                  
29 //*-- Author: Yves Schutz (SUBATECH) 
30
31 // --- ROOT system ---
32
33 class TString ;
34 class TFolder ;
35 class TRandom ; 
36 class TGraph;
37 class TF1;
38
39 // --- AliRoot header files ---
40 class AliRawReader;
41 #include "AliDetector.h"
42 #include "AliEMCALGeometry.h" 
43 #include "AliEMCALRawUtils.h"
44 #include "AliReconstructor.h"
45 class AliEMCALTriggerData;
46
47 class AliEMCAL : public AliDetector {
48
49  public:
50   
51   AliEMCAL(); 
52   AliEMCAL(const char* name, const char* title="", const Bool_t checkGeoAndRun = kTRUE);
53
54   virtual ~AliEMCAL() ; 
55   virtual void   AddHit(Int_t, Int_t*, Float_t *) {
56     Fatal("AddHit(Int_t, Int_t*, Float_t *", "not to be used: use AddHit( Int_t shunt, Int_t primary, Int_t track,Int_t id, Float_t *hits )") ;  
57   }
58   virtual AliDigitizer* CreateDigitizer(AliDigitizationInput* digInput) const;
59   virtual void  CreateMaterials() ;   
60   virtual void  Init() ;   
61   virtual void  Digits2Raw();
62   
63   virtual void  FinishRun() {}                  
64   virtual AliEMCALGeometry * GetGeometry() const ;
65    // {return AliEMCALGeometry::GetInstance(GetTitle(),"") ;  }   
66   virtual void    Hits2SDigits();
67   virtual Int_t   IsVersion(void) const = 0 ;   
68   
69    //  
70   virtual AliLoader* MakeLoader(const char* topfoldername);
71   virtual const TString Version() const {return TString(" ") ; }   
72
73   virtual void  SetCheckRunNumberAndGeoVersion(Bool_t check) { fCheckRunNumberAndGeoVersion = check ; }
74
75   Bool_t Raw2SDigits(AliRawReader* rawReader);
76   
77 protected:
78   void InitConstants();  //initializes some params
79
80   Int_t    fBirkC0; // constants for Birk's Law implementation
81   Double_t fBirkC1; // constants for Birk's Law implementation
82   Double_t fBirkC2; // constants for Birk's Law implementation
83
84   AliEMCALGeometry* fGeometry;              //!
85   Bool_t   fCheckRunNumberAndGeoVersion;    // Check if run number corresponds to the requested geometry and V1 is used
86   
87   //For embedding
88   static AliEMCALRawUtils    * fgRawUtils;        // raw utilities class, for embedding 
89   AliEMCALTriggerData        * fTriggerData;      // Trigger parameters data container
90
91 private:
92   AliEMCAL(const AliEMCAL& emcal);
93   AliEMCAL & operator = (const AliEMCAL & /*rvalue*/);
94
95   ClassDef(AliEMCAL,12) // Electromagnetic calorimeter (base class)
96     
97 } ;
98
99 #endif // ALIEMCAL_H