]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCcalibBase.h
# simple script to filter warnings in TPC code
[u/mrichter/AliRoot.git] / TPC / AliTPCcalibBase.h
CommitLineData
3ab35fc5 1#ifndef ALITPCCALIBBASE_H
2#define ALITPCCALIBBASE_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7////
8////
9////
10
11#include "TNamed.h"
15e48021 12#include "TObjString.h"
3ab35fc5 13class AliTPCseed;
c32da879 14class AliESDEvent;
f7f33dec 15class AliESDtrack;
3ab35fc5 16class TCollection;
ae28e92e 17class TTreeSRedirector;
52a5850f 18class TGraph;
19class TGraphErrors;
20class THnSparse;
6ba68367 21class TH1;
3ab35fc5 22
23class AliTPCcalibBase:public TNamed {
24public:
06c1ea82 25 AliTPCcalibBase();
8cf12c96 26 AliTPCcalibBase(const char * name, const char * title);
ae28e92e 27 AliTPCcalibBase(const AliTPCcalibBase&calib);
28 AliTPCcalibBase &operator=(const AliTPCcalibBase&calib);
3ab35fc5 29 virtual ~AliTPCcalibBase();
b842d904 30 virtual void Process(AliESDEvent *event){ fCurrentEvent = event; return;}
31 virtual void Process(AliTPCseed *track){fCurrentSeed = track; return;}
32 virtual void Process(AliESDtrack *track, Int_t /*runNo=-1*/){fCurrentTrack=track; return;}
06c1ea82 33 virtual Long64_t Merge(TCollection */*li*/){return 0;}
3ab35fc5 34 virtual void Analyze(){return;}
7eaa723e 35 virtual void Terminate();
c51653e8 36 virtual void UpdateEventInfo(AliESDEvent * event);
37 virtual Bool_t AcceptTrigger();
2d22fa36 38 virtual void SetTriggerMask(Int_t accept, Int_t reject, Bool_t rejectLaser){fTriggerMaskAccept=accept;fTriggerMaskReject=reject; fRejectLaser = rejectLaser;}
39
ae28e92e 40 //
41 // debug streamer support
42 TTreeSRedirector *GetDebugStreamer();
43 void SetStreamLevel(Int_t streamLevel){fStreamLevel=streamLevel;}
44 void SetDebugLevel(Int_t level) {fDebugLevel = level;}
45 Int_t GetStreamLevel() const {return fStreamLevel;}
46 Int_t GetDebugLevel() const {return fDebugLevel;}
f7f33dec 47 virtual void RegisterDebugOutput(const char *path);
2d22fa36 48 static Bool_t HasLaser(AliESDEvent *event);
70b0f0bf 49 static TGraphErrors * FitSlices(THnSparse *h, Int_t axisDim1, Int_t axisDim2, Int_t minEntries, Int_t nmaxBin, Float_t fracLow=0.1, Float_t fracUp=0.9, Bool_t useMedian=kFALSE, TTreeSRedirector *cstream=0, Int_t ival=1);
6ba68367 50 static void BinLogX(THnSparse *h, Int_t axisDim);
51 static void BinLogX(TH1 *h);
ae28e92e 52protected:
53 TTreeSRedirector *fDebugStreamer; //! debug streamer
54 Int_t fStreamLevel; // debug stream level
108953e9 55 Int_t fRun; //! current Run number
56 Int_t fEvent; //! current Event number
57 Int_t fTime; //! current Time
690b016b 58 ULong64_t fTrigger; //! current trigger mask
108953e9 59 Float_t fMagF; //! current magnetic field
c51653e8 60 Int_t fTriggerMaskReject; //trigger mask - non accept trigger
61 Int_t fTriggerMaskAccept; //trigger mask - accept
2d22fa36 62 Bool_t fHasLaser; //flag the laser is overlayed with given event
63 Bool_t fRejectLaser; //flag- reject laser
b842d904 64 TObjString fTriggerClass; // trigger class
65 AliESDEvent *fCurrentEvent; //! current event
66 AliESDtrack *fCurrentTrack; //! current esd track
67 AliTPCseed *fCurrentSeed; //! current seed
ae28e92e 68private:
69 Int_t fDebugLevel; // debug level
108953e9 70
3ab35fc5 71 ClassDef(AliTPCcalibBase,1)
72};
73
74#endif