1 |
pam-fi |
1.1 |
/* |
2 |
|
|
* TofDedxHeCut.h |
3 |
|
|
* |
4 |
|
|
* Created on: 03/ago/2009 |
5 |
|
|
* Author: Nicola Mori |
6 |
|
|
*/ |
7 |
|
|
|
8 |
|
|
/*! @file TofDedxHeCut.h The TofDedxHeCut.h class definition file. */ |
9 |
|
|
|
10 |
|
|
#ifndef TOFDEDXHECUT_H_ |
11 |
|
|
#define TOFDEDXHECUT_H_ |
12 |
|
|
|
13 |
|
|
#include "../../PamCutBase/PamCutBase.h" |
14 |
|
|
|
15 |
|
|
/*! @brief Cutting a band dE/dx vs. Beta for Helium. |
16 |
|
|
* This cut discards events where TOF dE/dx vs. Beta are outside the helium "corridor". This corridor is currently |
17 |
|
|
* defined by: |
18 |
|
|
* |
19 |
pam-fi |
1.3 |
* dE/dx > 1 / (p[0] * pow(beta, p[4]) + p[1]) + p[2] + p[3]*beta |
20 |
|
|
* dE/dx < 1 / (p[5] * pow((*beta), p[9]) + p[6]) + p[7] + p[8]*(*beta); |
21 |
pam-fi |
1.1 |
* |
22 |
pam-fi |
1.3 |
* where p[i] are calibration parameters. Currently, they are available for each single layer; the beta used is the beta[12] corresponding |
23 |
|
|
* to the TOF standalone track or to the TRK physical track, depending on the value of the standAlone parameter of the constructor. The |
24 |
|
|
* cut parameters have been obtained using the standalone beta, but they have proven to be good also for beta from tracker, so a single |
25 |
|
|
* set of parameter will be used for both cases. |
26 |
|
|
* If the required combination of planes has no available calibration, the one for S21 will be used (but it probably won't work well...). |
27 |
|
|
* In particular, there's no currently available calibration for combinations of layers. |
28 |
pam-fi |
1.1 |
*/ |
29 |
|
|
class TofDedxHeCut: public PamCut { |
30 |
|
|
|
31 |
|
|
public: |
32 |
|
|
/*! @brief Constructor. |
33 |
|
|
* |
34 |
|
|
* @param cutName The cut's name. |
35 |
pam-fi |
1.3 |
* @param layer The layer to use. Select it using values like #S11 (for single layers) or S11+S12 (for the mean of many layers). |
36 |
pam-fi |
1.2 |
* @param standAlone If true, the cut will use the standalone measure of beta; otherwise it will use the |
37 |
|
|
* physical track. |
38 |
pam-fi |
1.1 |
*/ |
39 |
pam-fi |
1.3 |
TofDedxHeCut(const char *cutName, unsigned int layer, bool standAlone = true); |
40 |
pam-fi |
1.1 |
/*! @brief Destructor. */ |
41 |
|
|
~TofDedxHeCut() { |
42 |
|
|
|
43 |
|
|
} |
44 |
|
|
|
45 |
pam-fi |
1.3 |
/*! @brief The dE/dx vs. beta helium check. |
46 |
pam-fi |
1.1 |
* |
47 |
|
|
* @param event The event to analyze. |
48 |
|
|
* @return #CUTOK if event is inside helium "corridor". |
49 |
|
|
* @return 0 otherwise. |
50 |
|
|
*/ |
51 |
|
|
int Check(PamLevel2 *event); |
52 |
|
|
|
53 |
|
|
private: |
54 |
|
|
|
55 |
pam-fi |
1.3 |
unsigned int _layer; |
56 |
pam-fi |
1.2 |
bool _standAlone; |
57 |
pam-fi |
1.3 |
const float *_p; |
58 |
|
|
// Single layers standalone |
59 |
|
|
static const float _S11_SA_params[10], _S12_SA_params[10], _S21_SA_params[10], _S22_SA_params[10], _S31_SA_params[10], |
60 |
|
|
_S32_SA_params[10]; |
61 |
pam-fi |
1.1 |
}; |
62 |
|
|
|
63 |
|
|
#endif /* TOFDEDXHECUT_H_ */ |