]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSBeamTestDig.cxx
Updated error definitions.
[u/mrichter/AliRoot.git] / ITS / AliITSBeamTestDig.cxx
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
10 ClassImp(AliITSBeamTestDig)
11
12
13
14 //_____________________________________________________________
15   AliITSBeamTestDig::AliITSBeamTestDig(): TTask(),
16 fITSHeader(0),
17 fReader(0),
18 fTreeD(0),
19 fITSgeom(0)
20 {
21   //
22   // Default constructor
23   //
24 }
25
26 //_____________________________________________________________
27 AliITSBeamTestDig::AliITSBeamTestDig(const Text_t* name, const Text_t* title): TTask(name,title),
28 fITSHeader(0),
29 fReader(0),
30 fTreeD(0),
31 fITSgeom(0)
32 {
33   //
34   // Standard constructor
35   //
36
37 }
38
39 //______________________________________________________________________
40 AliITSBeamTestDig::AliITSBeamTestDig(const AliITSBeamTestDig &bt):TTask(bt),
41 fITSHeader(bt.fITSHeader),
42 fReader(bt.fReader),
43 fTreeD(bt.fTreeD),
44 fITSgeom(bt.fITSgeom){
45     // Copy constructor. 
46
47 }
48 //______________________________________________________________________
49 AliITSBeamTestDig& AliITSBeamTestDig::operator=(const AliITSBeamTestDig &source){
50     // Assignment operator
51   this->~AliITSBeamTestDig();
52   new(this) AliITSBeamTestDig(source);
53   return *this;
54 }
55
56
57   
58