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