Line data Source code
1 : //-*- Mode: C++ -*-
2 : // $Id: AliHLTEMCALConstants.h 35357 2009-10-08 13:24:38Z phille $
3 :
4 : /**************************************************************************
5 : * This file is property of and copyright by the Experimental Nuclear *
6 : * Physics Group, Dep. of Physics *
7 : * University of Oslo, Norway, 2006 *
8 : * *
9 : * Author: Svein Lindal slindal@fys.uio.no for the ALICE DCS Project. *
10 : * Contributors are mentioned in the code where appropriate. *
11 : * Please report bugs to slindal@fys.uio.no *
12 : * *
13 : * Permission to use, copy, modify and distribute this software and its *
14 : * documentation strictly for non-commercial purposes is hereby granted *
15 : * without fee, provided that the above copyright notice appears in all *
16 : * copies and that both the copyright notice and this permission notice *
17 : * appear in the supporting documentation. The authors make no claims *
18 : * about the suitability of this software for any purpose. It is *
19 : * provided "as is" without express or implied warranty. *
20 : **************************************************************************/
21 :
22 : #ifndef ALIHLTEMCALCONSTANTS_H
23 : #define ALIHLTEMCALCONSTANTS_H
24 :
25 :
26 : #include "AliHLTCaloConstants.h"
27 :
28 :
29 : class AliHLTEMCALConstants : public AliHLTCaloConstants
30 : {
31 :
32 : public:
33 : AliHLTEMCALConstants();
34 : ~AliHLTEMCALConstants();
35 0 : virtual Int_t GetNZROWSMOD() const { return EMCAL::NZROWSMOD;}
36 0 : virtual Int_t GetNXCOLUMNSMOD() const { return EMCAL::NXCOLUMNSMOD;};
37 0 : virtual Int_t GetNMODULES() const { return EMCAL::NMODULES; };
38 0 : virtual Int_t GetNRCUSPERMODULE() const { return EMCAL::NRCUSPERMODULE;};
39 0 : virtual Int_t GetNFEECS() const { return EMCAL::NFEECS; } ;
40 : virtual void InitConstants();
41 :
42 : private:
43 :
44 6 : ClassDef(AliHLTEMCALConstants, 1)
45 : };
46 :
47 : #endif
|