]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSBeamTestDig.h
Moving the functions used to initialize TF1 and TF2 to the pivate part of the class
[u/mrichter/AliRoot.git] / ITS / AliITSBeamTestDig.h
CommitLineData
38300302 1#ifndef ALIITSBEAMTESTDIG_H
2#define ALIITSBEAMTESTDIG_H
3
4////////////////////////////////////////////////////
5// Class to define //
6// beam test raw 2 dig conv. //
7// Origin: E. Crescio crescio@to.infn.it //
8// November 2004 //
9////////////////////////////////////////////////////
10
11#include "TTask.h"
38300302 12
5ba31760 13class AliITS;
8ace09b6 14class AliRawReader;
38300302 15class TTree;
5ba31760 16class AliITSEventHeader;
38300302 17
18class AliITSBeamTestDig: public TTask {
19
20 public:
21
22
23 AliITSBeamTestDig();
24 AliITSBeamTestDig(const Text_t* name, const Text_t* title);
25 AliITSBeamTestDig(const AliITSBeamTestDig& bt);
5ba31760 26 AliITSBeamTestDig& operator=(const AliITSBeamTestDig &source);
38300302 27 virtual ~AliITSBeamTestDig() {}
28
8ace09b6 29 void SetRawReader(AliRawReader* rd) {fReader=rd;}
38300302 30 void SetTree(TTree* treedig) {fTreeD=treedig;}
31 void SetITSEventHeader(AliITSEventHeader* header){fITSHeader = header;}
32
5ba31760 33 void SetBeamTest(AliITS* bt) {fBt=bt;}
38300302 34
35
36 protected:
37
38 AliITSEventHeader* fITSHeader; // its event header
8ace09b6 39 AliRawReader* fReader; // !reader ;
38300302 40 TTree* fTreeD; // tree of digits
41
5ba31760 42 AliITS* fBt; // !beam test object
38300302 43
8ace09b6 44 ClassDef(AliITSBeamTestDig,3) // its beam test digitization
38300302 45
46 };
47
48
49
50#endif
51
52