]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCcalibBase.h
1. Making TPC calibration task working on PROOF
[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"
12class AliTPCseed;
c32da879 13class AliESDEvent;
f7f33dec 14class AliESDtrack;
3ab35fc5 15class TCollection;
ae28e92e 16class TTreeSRedirector;
3ab35fc5 17
18class AliTPCcalibBase:public TNamed {
19public:
06c1ea82 20 AliTPCcalibBase();
ae28e92e 21 AliTPCcalibBase(const AliTPCcalibBase&calib);
22 AliTPCcalibBase &operator=(const AliTPCcalibBase&calib);
3ab35fc5 23 virtual ~AliTPCcalibBase();
c32da879 24 virtual void Process(AliESDEvent */*event*/){return;}
06c1ea82 25 virtual void Process(AliTPCseed */*track*/){return;}
f7f33dec 26 virtual void Process(AliESDtrack */*track*/){return;}
06c1ea82 27 virtual Long64_t Merge(TCollection */*li*/){return 0;}
3ab35fc5 28 virtual void Analyze(){return;}
7eaa723e 29 virtual void Terminate();
ae28e92e 30 //
31 // debug streamer support
32 TTreeSRedirector *GetDebugStreamer();
33 void SetStreamLevel(Int_t streamLevel){fStreamLevel=streamLevel;}
34 void SetDebugLevel(Int_t level) {fDebugLevel = level;}
35 Int_t GetStreamLevel() const {return fStreamLevel;}
36 Int_t GetDebugLevel() const {return fDebugLevel;}
f7f33dec 37 virtual void RegisterDebugOutput(const char *path);
ae28e92e 38protected:
39 TTreeSRedirector *fDebugStreamer; //! debug streamer
40 Int_t fStreamLevel; // debug stream level
41private:
42 Int_t fDebugLevel; // debug level
3ab35fc5 43 ClassDef(AliTPCcalibBase,1)
44};
45
46#endif