]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/EMCAL/AliHLTEMCALConstant.h
Refactoring: rempved the usage of AliHLTEMCALConstant
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALConstant.h
1 //-*- Mode: C++ -*-
2 // $Id: AliHLTPHOSConstants.h 34622 2009-09-04 13:22:01Z odjuvsla $
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: Per Thomas Hille perthi@fys.uio.no for the ALICE DCS Project.  *
10  * Contributors are mentioned in the code where appropriate.              *
11  * Please report bugs to perthi@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
23 #ifndef ALIHLTEMCALCONSTANT_H
24 #define ALIHLTEMCALCONSTANT_H
25
26 namespace EmcalHLTConst
27 {
28   //  const int NZROWSRCU     =   56;            /**<Number of rows per RCU*/       
29   // const int NXCOLUMNSRCU  =   16; 
30   const int NZROWSMOD      =  48;            /**<Number of rows per module*/       
31   const int NXCOLUMNSMOD   =  24;            /**<Number of columns per module*/ 
32
33   const int NRCUSPERSECTOR = 4;
34
35   /*
36   const int MIN_DDL_NUMBER = 4608;
37   const int MAX_DDL_NUMBER = 4631;
38   const int N_DDLS =  MAX_DDL_NUMBER - MIN_DDL_NUMBER +1;
39   */
40
41 #ifndef __CINT__
42   const unsigned char PFVECTORDIR[] = "/HLT/PHOS/PFVectors";
43 #endif
44   const int PFDEFAULTNSAMPLES = 70;
45   const int PFDEFAULTSTARTINDEX = 0;
46   const double DEFAULTTAU = 0.2;                /**<Assume that the signal rise time of the altrp pulses is 2 us (nominal value of the electronics)*/
47   const int DEFAULTFS = 10;                  /**<Assume that the signal is samples with 10 MHZ samle rate*/
48   const int NMODULES    =      13;           /**<Number of modules of the EMCAL detector*/
49   //  const int NRCUS       =      2;            /**<Number of RCUs per Module*/
50   const int NRCUSPERMODULE =  2 ;            /**<Number of RCUs per Module*/
51   const int NFEECS         =  9;             /**<Number of Frontend cards per branch*/
52 }
53
54
55 #endif
56
57