]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSBeamTestDig.cxx
Introducing the possibility to refit an ESD track to an arbitrary ESD vertex (Yu...
[u/mrichter/AliRoot.git] / ITS / AliITSBeamTestDig.cxx
CommitLineData
38300302 1////////////////////////////////////////////////////
2// Class to define //
3// beam test raw 2 dig conv. //
4// Origin: E. Crescio crescio@to.infn.it //
5// //
6////////////////////////////////////////////////////
7
8#include "AliITSBeamTestDig.h"
9
10ClassImp(AliITSBeamTestDig)
11
12
13
14//_____________________________________________________________
15 AliITSBeamTestDig::AliITSBeamTestDig(): TTask()
16{
17 //
18 // Default constructor
19 //
8ace09b6 20 fReader=0;
38300302 21 fTreeD=0;
38300302 22 fITSHeader=0;
7d62fb64 23 fITSgeom=0;
38300302 24}
25
26//_____________________________________________________________
27 AliITSBeamTestDig::AliITSBeamTestDig(const Text_t* name, const Text_t* title): TTask(name,title)
28{
29 //
30 // Standard constructor
31 //
32
8ace09b6 33 fReader=0;
38300302 34 fTreeD=0;
38300302 35 fITSHeader=0;
7d62fb64 36 fITSgeom = 0;
38300302 37}
38
39//______________________________________________________________________
40AliITSBeamTestDig::AliITSBeamTestDig(const AliITSBeamTestDig &bt):TTask(bt){
41 // Copy constructor.
42
8ace09b6 43 fReader=bt.fReader;
38300302 44 fTreeD=bt.fTreeD;
38300302 45 fITSHeader=bt.fITSHeader;
7d62fb64 46 fITSgeom = bt.fITSgeom;
38300302 47}
48//______________________________________________________________________
5ba31760 49AliITSBeamTestDig& AliITSBeamTestDig::operator=(const AliITSBeamTestDig &source){
38300302 50 // Assignment operator. This is a function which is not allowed to be
51 // done to the ITS beam test dig. It exits with an error.
52 // Inputs:
5ba31760 53 if(this==&source) return *this;
38300302 54 Error("operator=","You are not allowed to make a copy of the AliITSBeamTestDig");
55 exit(1);
56 return *this; //fake return
57}
58
59
60
61