38 |
* @param cutName The cut name. |
* @param cutName The cut name. |
39 |
* @param xCaloAxis Pointer to the CaloAxis object for X axis. |
* @param xCaloAxis Pointer to the CaloAxis object for X axis. |
40 |
* @param yCaloAxis Pointer to the CaloAxis object for Y axis. |
* @param yCaloAxis Pointer to the CaloAxis object for Y axis. |
41 |
* @param maxChi2 The maximum allowed Chi2. |
* @param maxChi2 The maximum allowed Chi2 (default value is optimized for single-track fit FitAxis). |
42 |
* @param minChi2 The minimum allowed Chi2. |
* @param minChi2 The minimum allowed Chi2 (default value is optimized for single-track fit FitAxis). |
43 |
*/ |
*/ |
44 |
CaloTrackChi2Cut(const char *cutName, CaloAxis *xCaloAxis, CaloAxis *yCaloAxis, float maxChi2=0.03, float minChi2=0.005) : |
CaloTrackChi2Cut(const char *cutName, CaloAxis *xCaloAxis, CaloAxis *yCaloAxis, float maxChi2=0.03, float minChi2=0.005) : |
45 |
PamCut(cutName), _xCaloAxis(xCaloAxis), _yCaloAxis(yCaloAxis), _maxChi2(maxChi2), _minChi2(minChi2) { |
PamCut(cutName), _xCaloAxis(xCaloAxis), _yCaloAxis(yCaloAxis), _maxChi2(maxChi2), _minChi2(minChi2) { |