26 |
/*! @brief Constructor. |
/*! @brief Constructor. |
27 |
* |
* |
28 |
* @param cutName The cut's name. |
* @param cutName The cut's name. |
29 |
* @param thresholdCoeff The threshold rigidity coefficient |
* @param thresholdCoeff The threshold rigidity coefficient. |
30 |
*/ |
*/ |
31 |
TrkRigGeoCut(const char *cutName, float thresholdCoeff) : |
TrkRigGeoCut(const char *cutName, const char *trkAlg, float thresholdCoeff) : |
32 |
PamCut(cutName), _thresholdCoeff(thresholdCoeff) { |
PamCut(cutName), _trkAlg(trkAlg), _thresholdCoeff(thresholdCoeff) { |
33 |
} |
} |
34 |
/*! @brief Destructor. */ |
/*! @brief Destructor. */ |
35 |
~TrkRigGeoCut() { |
~TrkRigGeoCut() { |
51 |
|
|
52 |
private: |
private: |
53 |
|
|
54 |
|
const char *_trkAlg; |
55 |
float _thresholdCoeff; |
float _thresholdCoeff; |
56 |
|
|
57 |
}; |
}; |