]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliLHCReader.h
Coverity Fix.
[u/mrichter/AliRoot.git] / STEER / AliLHCReader.h
CommitLineData
d96c6484 1#ifndef ALILHCREADER_H
2#define ALILHCREADER_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9///////////////////////////////////////////////////////////////////////////////
10// //
11// Class to read the file coming from DCS containing the information //
12// from LHC. //
13// //
14///////////////////////////////////////////////////////////////////////////////
15
16class TString;
17class TMap;
49822138 18class TObjArray;
d96c6484 19
20#include <TObject.h>
21
22class AliLHCReader : public TObject{
23 public:
24 AliLHCReader(); // default ctor
25 virtual ~AliLHCReader();
26 TMap* ReadLHCDP(TString lhcDP);
27
28 UInt_t GetStartTime() const {return fStartTime;}
29 UInt_t GetEndTime() const {return fEndTime;}
30
31 void SetStartTime(UInt_t startTime) {fStartTime=startTime;}
32 void SetEndTime(UInt_t endTime) {fEndTime = endTime;}
49822138 33 TObjArray* ReadSingleLHCDP(TString filename, TString alias);
d96c6484 34
35 private:
36 AliLHCReader& operator=(const AliLHCReader *reader); // assignment operator
37 AliLHCReader(const AliLHCReader *reader); // copy ctor
38
39 UInt_t fStartTime; // start time of data taking
40 UInt_t fEndTime; // end time of data taking
41
42 ClassDef(AliLHCReader,0)
43 };
44#endif