]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDV0Params.cxx
d47ee034d3007c0862609ad67aed5dce2a619b91
[u/mrichter/AliRoot.git] / STEER / AliESDV0Params.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16
17 //-------------------------------------------------------------------------
18 //            Helper -DATA  class ESD V0 vertex class
19 //            contains effective errror parameterization 
20 //            Effective parameterization of resolution in DCA and PA  as function of radii and momenta
21 //            Mini-max coeficient    fPMinFraction... fPMaxFraction...
22 //                                   as limits for Error parameterization using Covariance matrix             
23 //            For detailes : see  AliESDv0 class   
24 //             
25 //    Origin: Marian Ivanov marian.ivanov@cern.ch
26 //-------------------------------------------------------------------------
27
28
29 #include "AliESDV0Params.h"
30
31
32 ClassImp(AliESDV0Params)
33
34 Int_t    AliESDV0Params::fgStreamLevel     = 0;        // stream (debug) level
35
36
37 AliESDV0Params::AliESDV0Params() :
38   TObject(),
39   // These constants are used in the error parameterization using covariance matrix
40   // minimal sigma in AP and DCA 
41   fPSigmaOffsetD0(0.03),      // minimal sigma of error estimate
42   fPSigmaOffsetAP0(0.005),
43   //
44   // Effective parameterization of DCA resolution as function of pt and decay radii
45   //
46   fPSigmaMaxDE(0.5),
47   fPSigmaOffsetDE(0.06),
48   fPSigmaCoefDE(0.02),
49   fPSigmaRminDE(2.7),
50   //
51   //
52   // Effective parameterization of PA resolution as function of pt and decay radii
53   //
54   fPSigmaBase0APE(0.005),
55   fPSigmaMaxAPE(0.06),
56   fPSigmaR0APE(0.02),
57   fPSigmaR1APE(0.1), 
58   fPSigmaP0APE(0.7*0.4),
59   fPSigmaP1APE(0.3*0.4),
60   //
61   //
62   // Minimax parameters
63   //
64   fPMinFractionAP0(0.5),
65   fPMaxFractionAP0(1.5),
66   fPMinAP0(0.003),
67   fPMinFractionD0(0.5),
68   fPMaxFractionD0(1.5),
69   fPMinD0(0.05)
70   //
71
72 {
73   //
74   // Default constructor
75   // Consult AliESDv0 to see actual error parameterization 
76   //
77 }
78
79
80