]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSConstants.cxx
Removing unused constants
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSConstants.cxx
1 //-*- Mode: C++ -*-
2 // $Id: AliHLTPHOSConstants.cxx $
3 //**************************************************************************
4 //* This file is property of and copyright by the ALICE HLT Project        * 
5 //* ALICE Experiment at CERN, All rights reserved.                         *
6 //*                                                                        *
7 //* Primary Authors: Svein Lindal <slindal@fys.uio.no>                     *
8 //*                  for The ALICE HLT Project.                            *
9 //*                                                                        *
10 //* Permission to use, copy, modify and distribute this software and its   *
11 //* documentation strictly for non-commercial purposes is hereby granted   *
12 //* without fee, provided that the above copyright notice appears in all   *
13 //* copies and that both the copyright notice and this permission notice   *
14 //* appear in the supporting documentation. The authors make no claims     *
15 //* about the suitability of this software for any purpose. It is          *
16 //* provided "as is" without express or implied warranty.                  *
17 //**************************************************************************
18
19 /// @file   AliHLTPHOSConstants.cxx
20 /// @author Svein Lindal
21 /// @date   2009-11-12
22 /// @brief  Class containing constants for PHOS
23 ///         loaded libraries
24
25 #include "AliHLTCaloConstants.h"
26 #include "AliHLTPHOSConstants.h"
27
28 ClassImp(AliHLTPHOSConstants);
29
30 AliHLTPHOSConstants::AliHLTPHOSConstants() :
31   AliHLTCaloConstants(),
32   fkMAXHOSTS(20),
33   fkDEFAULTEVENTPORT(42001),
34   fkNZROWSRCU(56),
35   fkNXCOLUMNSRCU(16),
36   fkNZROWSMOD(56),
37   fkNXCOLUMNSMOD(64),
38   fkNDATATYPES(10),
39   fkCSPSPERFEE(32),
40   fkRCU0(0),
41   fkRCU1(1),
42   fkRCU2(2),
43   fkRCU3(3),
44   fkZ0(0),
45   fkZ1(1),
46   fkX0(0),
47   fkX1(1),
48   fkNMODULES(5),
49   fkNRCUS(4),
50   fkNRCUSPERMODULE(4),
51   fkNRCUSPERTOTAL(fkNMODULES*fkNRCUSPERMODULE),
52   fkNFEECS(14),
53   fkNALTROS(4),
54   fkNALTROCHANNELS(16),
55   fkNBRANCHES(2),
56   fkCELLSTEP(2.255),
57   //  fkNRCUSPERSECTOR(-9999),
58   fkDDLOFFSET(1792),
59   fkDETNAME("PHOS")
60 {
61   //Default constructor
62 }
63
64 AliHLTPHOSConstants::~AliHLTPHOSConstants()
65 {
66   //Default destructor
67 }
68