]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HBTAN/AliHBTCorrectOSLCorrelFctn.cxx
Track Points moved to ANALYSIS
[u/mrichter/AliRoot.git] / HBTAN / AliHBTCorrectOSLCorrelFctn.cxx
1 #include "AliHBTCorrectOSLCorrelFctn.h"
2 /******************************************************************/
3 /******************************************************************/
4 /******************************************************************/
5
6 //____________________
7 ///////////////////////////////////////////////////////
8 //                                                   //
9 // AliHBTCorrectOSLCorrelFctn                        //
10 //                                                   //
11 // Class for calculating Q Invariant correlation     //
12 // taking to the account resolution of the           //
13 // detector and coulomb effects.                     //
14 //                                                   //
15 ///////////////////////////////////////////////////////
16
17
18 AliHBTCorrectOSLCorrelFctn::AliHBTCorrectOSLCorrelFctn(const char* name, const char* title):
19  AliHBTOnePairFctn3D(name,title),
20  fMeasCorrelFctn(0x0),
21  fSmearedNumer(0x0),
22  fSmearedDenom(0x0),
23  fMeasNumer(0x0),
24  fMeasDenom(0x0)
25 {
26 //ctor
27 }
28 /******************************************************************/
29
30 AliHBTCorrectOSLCorrelFctn::AliHBTCorrectOSLCorrelFctn(const AliHBTCorrectOSLCorrelFctn& in):
31  AliHBTOnePairFctn3D(in),
32  fMeasCorrelFctn(0x0),
33  fSmearedNumer(0x0),
34  fSmearedDenom(0x0),
35  fMeasNumer(0x0),
36  fMeasDenom(0x0)
37 {
38 //cpy constructor
39  in.Copy(*this);
40 }
41 /******************************************************************/
42
43 AliHBTCorrectOSLCorrelFctn::~AliHBTCorrectOSLCorrelFctn()
44 {
45  //dtor
46  delete fMeasCorrelFctn;
47  delete fSmearedNumer;
48  delete fSmearedDenom;
49  delete fMeasNumer;
50  delete fMeasDenom;
51 }
52
53 /******************************************************************/