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 */
8 //////////////////////////////////////////////////////////////////////////
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 //
15 //////////////////////////////////////////////////////////////////////////
21 class AliITSHLTforSDD : public TObject {
25 AliITSHLTforSDD(TString hltMode);
26 virtual ~AliITSHLTforSDD(){};
28 void SetHLTmodeC(Bool_t isHLTmodC){fHLTmodeC=isHLTmodC;}
29 Bool_t IsHLTmodeC() const {return fHLTmodeC;}
33 Bool_t fHLTmodeC; // flag for the HLT status
35 ClassDef(AliITSHLTforSDD,1);