| 35 |
* @param pamTrack Pointer to the Pamela track object. |
* @param pamTrack Pointer to the Pamela track object. |
| 36 |
* @param qRatioMin The minimum threshold for the ratio between track charge and total charge in CALO. |
* @param qRatioMin The minimum threshold for the ratio between track charge and total charge in CALO. |
| 37 |
*/ |
*/ |
| 38 |
CaloNotIntCut(const char *cutName, PamTrack *pamTrack, float qRatioMin=0.8) : |
CaloNotIntCut(const char *cutName, PamTrack **pamTrack, float qRatioMin=0.8) : |
| 39 |
PamCut(cutName), _pamTrack(pamTrack), _xCaloAxis(NULL), _yCaloAxis(NULL), _qRatioMin(qRatioMin) { |
PamCut(cutName), _pamTrack(pamTrack), _xCaloAxis(NULL), _yCaloAxis(NULL), _qRatioMin(qRatioMin) { |
| 40 |
} |
} |
| 41 |
|
|
| 70 |
|
|
| 71 |
private: |
private: |
| 72 |
|
|
| 73 |
PamTrack *_pamTrack; |
PamTrack **_pamTrack; |
| 74 |
CaloAxis *_xCaloAxis, *_yCaloAxis; |
CaloAxis *_xCaloAxis, *_yCaloAxis; |
| 75 |
float _qRatioMin; |
float _qRatioMin; |
| 76 |
|
|