/[PAMELA software]/PamCut/TrkCuts/TrkNucleiZCut/TrkNucleiZCut.cpp
ViewVC logotype

Annotation of /PamCut/TrkCuts/TrkNucleiZCut/TrkNucleiZCut.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (hide annotations) (download)
Wed Aug 5 14:06:14 2009 UTC (15 years, 4 months ago) by pam-fi
Branch: MAIN
Changes since 1.2: +56 -25 lines
Added support for charge range selection.

1 pam-fi 1.1 /*
2     * TrkNucleiZCut.cpp
3     *
4     * Created on: 10-mag-2009
5     * Author: Nicola Mori
6     */
7    
8     /*! @file TrkNucleiZCut.cpp The TrkNucleiZCut class implementation file */
9     #ifndef NO_TRKNUCLEI
10    
11     #include "TrkNucleiZCut.h"
12    
13 pam-fi 1.3 const float TrkNucleiZCut::_meanRigMean[] = {.992, 1.99, 3., 4., 5., 6.}; // the charge distribution peak for Z=1..6
14     const float TrkNucleiZCut::_sigmaRigMean[] = {0.06, 0.1, 0.17, 0.34, 0.44, 0.59}; // the charge-width for Z=1..6
15 pam-fi 1.2
16 pam-fi 1.3 const float TrkNucleiZCut::_meanBetaMean[] = {1., 2., 3., 4., 5., 6.}; // the charge distribution peak for Z=1..6
17     const float TrkNucleiZCut::_sigmaBetaMean[] = {0.09, 0.1, 0.17, 0.34, 0.44, 0.59}; // the charge-width for Z=1..6
18 pam-fi 1.1
19    
20     int TrkNucleiZCut::Check(PamLevel2 *event) {
21    
22 pam-fi 1.3 if (_lowZ < 1 || _lowZ > 6) {
23     return TRKNUCLEIZ_ILLEGALLOWZ;
24     }
25     if ((_highZ < _lowZ && _highZ != -1) || _highZ > 6) {
26     return TRKNUCLEIZ_ILLEGALLOWZ;
27     }
28    
29     /* Check if we must perform a range selection */
30     bool range = false;
31     if (_highZ 1= -1)
32     range = true;
33 pam-fi 1.1
34     // ******** Check if TrkNuclei has already been initialized ********
35     if (_trkNuclei == NULL)
36 pam-fi 1.3 _trkNuclei = new TrkNuclei();
37 pam-fi 1.1 _trkNuclei->Set(event->GetTrack(0)->GetTrkTrack());
38    
39     // ******** First of all, check if the minimum number of planes is matched. ********
40     // NOTE: in current implementation a plane is considered valid if it is tagged as good in Tracker level 2
41     // routines. This should correspond to a valid charge.
42     // TODO Check the above statement.
43    
44     // Prepare the valid charges counter
45     unsigned int nValid = 0;
46     for (unsigned int ip = 0; ip < 6; ip++) {
47     if (_trkNuclei->GetTrkTrack()->XGood(ip) && _trkNuclei->GetTrkTrack()->XGood(ip))
48 pam-fi 1.3 nValid++;
49 pam-fi 1.1 }
50     if (nValid < _minLayers)
51 pam-fi 1.3 return TRKNUCLEIZ_TOOFEWLAYERS;
52 pam-fi 1.1
53     // ******** Check the mean charge value ********
54     if (_howToCheck == TRKNUCLEIZ_CHECKMEAN) {
55    
56 pam-fi 1.3 Float_t charge = 0., meanLowZ = 0., sigmaLowZ = 0., meanHighZ = 0., sigmaHighZ = 0.;;
57 pam-fi 1.1 switch (_method) {
58 pam-fi 1.3 case TRKNUCLEIZ_RIG:
59 pam-fi 1.1 charge = _trkNuclei->GetZ_Rigidity();
60 pam-fi 1.3 meanLowZ = _meanRigMean[_lowZ-1];
61     sigmaLowZ = _sigmaRigMean[_lowZ-1];
62     if(range) {
63     meanHighZ = _meanRigMean[_highZ-1];
64     sigmaHighZ = _sigmaRigMean[_highZ-1];
65     }
66 pam-fi 1.1 break;
67 pam-fi 1.3 case TRKNUCLEIZ_BETA:
68 pam-fi 1.1 charge = _trkNuclei->GetZ_Beta(event->GetTrack(0)->GetToFTrack()->beta[12]);
69 pam-fi 1.3 meanLowZ = _meanBetaMean[_Z-1];
70     sigmaLowZ = _sigmaBetaMean[_Z-1];
71     if(range) {
72     meanHighZ = _meanBetaMean[_highZ-1];
73     sigmaHighZ = _sigmaBetaMean[_highZ-1];
74     }
75    
76 pam-fi 1.1 break;
77     }
78    
79 pam-fi 1.3 if(!range) {
80     if ((charge > meanLowZ + _upperLimit * sigmaLowZ) || (charge < meanLowZ - _lowerLimit * sigmaLowZ)) {
81     return TRKNUCLEIZ_OUTOFBOUNDS;
82     }
83     }
84     else {
85     if ((charge > meanHighZ + _upperLimit * sigmaHighZ) || (charge < meanLowZ - _lowerLimit * sigmaLowZ)) {
86     return TRKNUCLEIZ_OUTOFBOUNDS;
87     }
88 pam-fi 1.1 }
89     }
90     // ******** Check the charge value from each plane ********
91     // NB. In current implementation only 2 check methods (mean and single values) are used, so an "else" statement
92     // is sufficient. Implement an "if" cascade or a "switch" if another check method is necessary.
93    
94     else {
95 pam-fi 1.3 Float_t charge[6] = {0., 0., 0., 0., 0., 0.};
96 pam-fi 1.1 nValid = 0;
97     switch (_method) {
98 pam-fi 1.3 case TRKNUCLEIZ_RIG:
99 pam-fi 1.1 for (int ip = 0; ip < 6; ip++) {
100     charge[ip] = _trkNuclei->GetZ_Rigidity(ip);
101     if (charge[ip] > 0.) {
102     nValid++;
103     }
104     }
105     break;
106 pam-fi 1.3 case TRKNUCLEIZ_BETA:
107 pam-fi 1.1 for (int ip = 0; ip < 6; ip++) {
108     charge[ip] = _trkNuclei->GetZ_Beta(ip, event->GetTrack(0)->GetToFTrack()->beta[12]);
109     if (charge[ip] > 0.) {
110     nValid++;
111     }
112     }
113     break;
114     }
115    
116     for (int ip = 0; ip < 6; ip++) {
117     if (charge[ip] > 0.) // Check only good layers
118 pam-fi 1.3 // Currently, no calibration for single layers is available. Z is used as a mean value, while for sigma
119     // we use the standard values use for mean dE/dx Vs. beta.
120     if(!range) {
121     if ((charge[ip] > _lowZ + _upperLimit * _sigmaBetaMean[_lowZ - 1]) || (charge[ip] < _lowZ - _lowerLimit * _sigmaBetaMean[_lowZ - 1])) {
122 pam-fi 1.1 return TRKNUCLEIZ_OUTOFBOUNDS;
123     }
124 pam-fi 1.3 }
125     else {
126     if ((charge[ip] > _highZ + _upperLimit * _sigmaBetaMean[_highZ - 1]) || (charge[ip] < _lowZ - _lowerLimit * _sigmaBetaMean[_lowZ - 1])) {
127     return TRKNUCLEIZ_OUTOFBOUNDS;
128     }
129     }
130 pam-fi 1.1 }
131     }
132    
133     return CUTOK;
134    
135     }
136    
137     #endif /* NO_TRKNUCLEI */

  ViewVC Help
Powered by ViewVC 1.1.23