1 #ifndef ALISHUTTLESTATUS_H
2 #define ALISHUTTLESTATUS_H
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
10 // This class stores the status of the Shuttle processing for a given run and a given detector
15 class AliShuttleStatus : public TObject
35 AliShuttleStatus(const AliShuttleStatus& c);
39 AliShuttleStatus& operator=(const AliShuttleStatus& c);
40 virtual void Copy(TObject& c) const;
42 AliShuttleStatus(Status status);
44 UInt_t GetTimeStamp() const { return fTimeStamp; }
45 void SetTimeStamp(UInt_t timeStamp) { fTimeStamp = timeStamp; }
47 Status GetStatus() const { return fStatus; }
48 const char* GetStatusName() const { return GetStatusName(fStatus); }
49 void SetStatus(Status status);
51 Int_t GetCount() const { return fCount; }
52 void SetCount(Int_t count) { fCount = count; }
53 void IncreaseCount() { fCount++; }
55 static const char* GetStatusName(Status status);
58 UInt_t fTimeStamp; // timestamp of the last change
59 Status fStatus; // status of the processing
60 Int_t fCount; // number of retries
62 ClassDef(AliShuttleStatus, 1);