Line data Source code
1 : #ifndef ALIITSHLTFORSDD_H
2 : #define ALIITSHLTFORSDD_H
3 : /* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id$ */
7 :
8 : //////////////////////////////////////////////////////////////////////////
9 : // //
10 : // Class to store the HLT status used to define the SDD raw data format //
11 : // (when HLT is in mode C SDD data are compressed, //
12 : // see AliITSCompressRawDataSDD) //
13 : // Origin: F.Prino, Torino, prino@to.infn.it //
14 : // //
15 : //////////////////////////////////////////////////////////////////////////
16 :
17 : #include<TObject.h>
18 :
19 : class TString;
20 :
21 0 : class AliITSHLTforSDD : public TObject {
22 :
23 : public:
24 : AliITSHLTforSDD();
25 : AliITSHLTforSDD(TString hltMode);
26 0 : virtual ~AliITSHLTforSDD(){};
27 :
28 0 : void SetHLTmodeC(Bool_t isHLTmodC){fHLTmodeC=isHLTmodC;}
29 0 : Bool_t IsHLTmodeC() const {return fHLTmodeC;}
30 :
31 :
32 : protected:
33 : Bool_t fHLTmodeC; // flag for the HLT status
34 :
35 134 : ClassDef(AliITSHLTforSDD,1);
36 : };
37 : #endif
|