1 |
pam-fi |
1.1 |
/* |
2 |
|
|
* TrkChi2Defl95Cut.h |
3 |
|
|
* |
4 |
|
|
* Created on: 7-apr-2009 |
5 |
|
|
* Author: Nicola Mori |
6 |
|
|
*/ |
7 |
|
|
|
8 |
|
|
#ifndef TRKCHI2DEFL95CUT_H_ |
9 |
|
|
#define TRKCHI2DEFL95CUT_H_ |
10 |
|
|
|
11 |
|
|
/*! @file TrkChi2Defl95Cut.h The TrkChi2Defl95Cut class definition file */ |
12 |
|
|
|
13 |
|
|
#include "../TrkChi2DeflCut.h" |
14 |
|
|
|
15 |
|
|
/*! @brief The tracker chi2 vs deflection cut at ~ 95% efficiency. |
16 |
|
|
* |
17 |
|
|
* This cut is a specialization of TrkChi2DeflCut, which gives about |
18 |
|
|
* 95% efficiency. |
19 |
|
|
*/ |
20 |
|
|
|
21 |
|
|
class TrkChi2Defl95Cut: public TrkChi2DeflCut { |
22 |
|
|
|
23 |
|
|
public: |
24 |
|
|
/*! @brief Constructor. |
25 |
|
|
* |
26 |
|
|
* @param cutName The cut's name. |
27 |
|
|
*/ |
28 |
|
|
TrkChi2Defl95Cut(const char *cutName) : |
29 |
|
|
TrkChi2DeflCut(cutName, 12.42, 199.5, 153.1) { |
30 |
|
|
} |
31 |
|
|
/*! @brief Destructor. */ |
32 |
|
|
~TrkChi2Defl95Cut() { |
33 |
|
|
} |
34 |
|
|
|
35 |
|
|
}; |
36 |
|
|
#endif /* TRKCHI2DEFL95CUT_H_ */ |