24 |
/*! @brief Constructor. |
/*! @brief Constructor. |
25 |
* |
* |
26 |
* @param cutName The cut's name. |
* @param cutName The cut's name. |
27 |
|
* @param shower If false, a single-track fits (FitAxis) is performed; if true, a shower fit (FitShower) is performed |
28 |
|
* |
29 |
*/ |
*/ |
30 |
CaloTrackCut(const char *cutName) : |
CaloTrackCut(const char *cutName, Bool_t showerFit=false) : |
31 |
PamCut(cutName) { |
PamCut(cutName), _showerFit(showerFit) { |
32 |
} |
} |
33 |
/*! @brief Destructor. */ |
/*! @brief Destructor. */ |
34 |
~CaloTrackCut() { |
~CaloTrackCut() { |
49 |
CaloAxis xCaloAxis; |
CaloAxis xCaloAxis; |
50 |
CaloAxis yCaloAxis; |
CaloAxis yCaloAxis; |
51 |
/*!@}*/ |
/*!@}*/ |
52 |
|
|
53 |
|
private: |
54 |
|
|
55 |
|
Bool_t _showerFit; |
56 |
|
|
57 |
}; |
}; |
58 |
|
|
59 |
#endif /* CALOTRACKCUT_H_ */ |
#endif /* CALOTRACKCUT_H_ */ |