]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliStats.h
Fix for 64-bit platforms
[u/mrichter/AliRoot.git] / RAW / AliStats.h
CommitLineData
a197a4ce 1#ifndef ALISTATS_H
2#define ALISTATS_H
3// @(#)alimdc:$Name$:$Id$
4// Author: Fons Rademakers 26/11/99
5
6/* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
7 * See cxx source for full Copyright notice */
8
9//////////////////////////////////////////////////////////////////////////
10// //
11// AliStats //
12// //
13//////////////////////////////////////////////////////////////////////////
14
15#ifndef ROOT_TObject
16#include <TObject.h>
17#endif
18
19#ifndef ROOT_TDatime
20#include <TDatime.h>
21#endif
22
23#ifndef ROOT_TString
24#include <TString.h>
25#endif
26
27
28// Forward class declarations
a197a4ce 29class TH1F;
30
31
32class AliStats : public TObject {
33
34public:
35 AliStats(const char *filename = "", Int_t compmode = 0, Bool_t filter = kFALSE);
36 AliStats(const AliStats &rhs);
37 virtual ~AliStats();
38 AliStats &operator=(const AliStats &rhs);
39
40 void SetEvents(Int_t events) { fEvents = events; }
ad594815 41 void SetFirstId(Int_t run, Int_t event) { fRun = run; fFirstEvent = event; }
42 void SetLastId(Int_t event) { fLastEvent = event; }
a197a4ce 43 void SetBeginTime() { fBegin.Set(); }
44 void SetEndTime() { fEnd.Set(); }
45 void SetFileSize(Double_t size) { fFileSize = size; }
46 void SetCompressionFactor(Float_t comp) { fCompFactor = comp; }
47 void Fill(Float_t time);
a197a4ce 48
49 Int_t GetEvents() const { return fEvents; }
ad594815 50 Int_t GetRun() const { return fRun; }
a197a4ce 51 Int_t GetFirstEvent() const { return fFirstEvent; }
a197a4ce 52 Int_t GetLastEvent() const { return fLastEvent; }
53 TDatime &GetBeginTime() { return fBegin; }
54 TDatime &GetEndTime() { return fEnd; }
55 Double_t GetFileSize() const { return fFileSize; }
56 Int_t GetCompressionMode() const { return fCompMode; }
57 Float_t GetCompressionFactor() const { return fCompFactor; }
58 Bool_t GetFilterState() const { return fFilter; }
59 const char *GetFileName() const { return fFileName; }
60 TH1F *GetRTHist() const { return fRTHist; }
61
62private:
63 Int_t fEvents; // number of events in this file
ad594815 64 Int_t fRun; // run number of first event in file
a197a4ce 65 Int_t fFirstEvent; // event number of first event in file
a197a4ce 66 Int_t fLastEvent; // event number of last event in file
67 TDatime fBegin; // begin of filling time
68 TDatime fEnd; // end of filling time
69 TString fFileName; // name of file containing this data
70 Double_t fFileSize; // size of file
71 Float_t fCompFactor; // tree compression factor
72 Int_t fCompMode; // compression mode
73 Bool_t fFilter; // 3rd level filter on/off
74 TH1F *fRTHist; // histogram of real-time to process chunck of data
75 Float_t fChunk; //!chunk to be histogrammed
76
da445579 77 ClassDef(AliStats,2) // Statistics object
a197a4ce 78};
79
80#endif