]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSConstants.cxx
Making AliHLTCaloConstants abstract ( as it ought to be )
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSConstants.cxx
CommitLineData
4f4b7ba4 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
a9c18ed8 25
26// #include "AliHLTCaloConstants.h"
27
67c65fb5 28#include "AliHLTPHOSConstants.h"
4f4b7ba4 29
30ClassImp(AliHLTPHOSConstants);
31
a9c18ed8 32AliHLTPHOSConstants::AliHLTPHOSConstants() : AliHLTCaloConstants()
4f4b7ba4 33{
1ff2323f 34 // //Default constructor
35 // fkNZROWSRCU = 56;
36 // fkNXCOLUMNSRCU = 16;
37 // fkNZROWSMOD = 56;
38 // fkNXCOLUMNSMOD = 64;
39 // fkNMODULES= 5;
40 // fkNRCUS = 4;
41 // fkNRCUSPERMODULE = 4;
42 // fkNRCUSPERTOTAL = fkNMODULES*fkNRCUSPERMODULE;
43 // fkNFEECS = 14;
44 // fkDETNAME = "PHOS";
45 // fkCELLSTEP = 2.255;
46 // fkDDLOFFSET = 1792;
47}
48
49AliHLTPHOSConstants::~AliHLTPHOSConstants()
50{
51 //Default destructor
52}
53
54
55
56void
57AliHLTPHOSConstants::InitConstants()
58{
59
c65aa222 60 fkNZROWSRCU = 56;
61 fkNXCOLUMNSRCU = 16;
62 fkNZROWSMOD = 56;
63 fkNXCOLUMNSMOD = 64;
64 fkNMODULES= 5;
65 fkNRCUS = 4;
66 fkNRCUSPERMODULE = 4;
67 fkNRCUSPERTOTAL = fkNMODULES*fkNRCUSPERMODULE;
68 fkNFEECS = 14;
532aa795 69 fkDETNAME = "PHOS";
70 fkCELLSTEP = 2.255;
71 fkDDLOFFSET = 1792;
1ff2323f 72
4f4b7ba4 73}