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