]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSHLTforSDD.h
fix warnings
[u/mrichter/AliRoot.git] / ITS / AliITSHLTforSDD.h
CommitLineData
5e6e7c0c 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
19class TString;
20
21class AliITSHLTforSDD : public TObject {
22
23 public:
24 AliITSHLTforSDD();
25 AliITSHLTforSDD(TString hltMode);
26 virtual ~AliITSHLTforSDD(){};
27
28 void SetHLTmodeC(Bool_t isHLTmodC){fHLTmodeC=isHLTmodC;}
2f8ed7ab 29 Bool_t IsHLTmodeC() const {return fHLTmodeC;}
5e6e7c0c 30
31
32 protected:
33 Bool_t fHLTmodeC; // flag for the HLT status
34
35 ClassDef(AliITSHLTforSDD,1);
36};
37#endif