25 |
class TofPatternCut: public PamCut { |
class TofPatternCut: public PamCut { |
26 |
|
|
27 |
public: |
public: |
28 |
/*! @brief Constructor. */ |
/*! @brief Constructor. |
29 |
TofPatternCut(const char *cutName) : |
* |
30 |
PamCut(cutName), _standalone(false), _notrk(0) { |
* @param cutName The cut's name. |
31 |
|
* @param standalone If true, the standalone track will be used; otherwise, track |
32 |
|
* from tracker will be used. |
33 |
|
* @param notrk The number of the physical track to use. |
34 |
|
*/ |
35 |
|
TofPatternCut(const char *cutName, bool standalone = false, int notrk = 0) : |
36 |
|
PamCut(cutName), _standalone(standalone), _notrk(notrk) { |
37 |
} |
} |
38 |
/*! @brief Destructor. */ |
/*! @brief Destructor. */ |
39 |
~TofPatternCut() { |
~TofPatternCut() { |