1 |
pam-fi |
1.1 |
/* |
2 |
|
|
* TrkChi2Defl90HeCut.h |
3 |
|
|
* |
4 |
|
|
* Created on: 23/set/2009 |
5 |
|
|
* Author: Nicola Mori |
6 |
|
|
*/ |
7 |
|
|
|
8 |
|
|
#ifndef TRKCHI2DEFL90HECUT_H_ |
9 |
|
|
#define TRKCHI2DEFL90HECUT_H_ |
10 |
|
|
|
11 |
|
|
/*! @file TrkChi2Defl90HeCut.h The TrkChi2Defl90HeCut class definition file. */ |
12 |
|
|
|
13 |
|
|
#include "../TrkChi2DeflCut.h" |
14 |
|
|
|
15 |
|
|
/*! @brief The tracker chi2 vs deflection cut at ~ 90% efficiency for helium. |
16 |
|
|
* |
17 |
|
|
* This cut is a specialization of TrkChi2DeflCut, which gives about |
18 |
|
|
* 90% efficiency for helium. |
19 |
|
|
* Calibration parameters are obtained from all the 8th reduction data, excluding |
20 |
|
|
* events with saturated clusters. |
21 |
|
|
*/ |
22 |
|
|
|
23 |
|
|
class TrkChi2Defl90HeCut: public TrkChi2DeflCut { |
24 |
|
|
|
25 |
|
|
public: |
26 |
|
|
/*! @brief Constructor. |
27 |
|
|
* |
28 |
|
|
* @param cutName The cut's name. |
29 |
|
|
*/ |
30 |
|
|
TrkChi2Defl90HeCut(const char *cutName) : |
31 |
|
|
TrkChi2DeflCut(cutName, 5.45, 137., 338.) { |
32 |
|
|
} |
33 |
|
|
/*! @brief Destructor. */ |
34 |
|
|
~TrkChi2Defl90HeCut() { |
35 |
|
|
} |
36 |
|
|
|
37 |
|
|
}; |
38 |
|
|
#endif /* TrkChi2Defl90HeCut_H_ */ |