1 |
pam-fi |
1.1 |
/* |
2 |
|
|
* TrgConfCut.h |
3 |
|
|
* |
4 |
|
|
* Created on: 10-mar-2009 |
5 |
|
|
* Author: Nicola Mori, S. Ricciarini |
6 |
|
|
*/ |
7 |
|
|
|
8 |
|
|
/*! @file TrgConfCut.cpp The TrgConfCut class definition file */ |
9 |
|
|
|
10 |
|
|
#ifndef TRGCONFCUT_H_ |
11 |
|
|
#define TRGCONFCUT_H_ |
12 |
|
|
|
13 |
|
|
#include "../../PamCutBase/PamCutBase.h" |
14 |
|
|
|
15 |
|
|
/*TODO: adattare il taglio anche per TOF4*/ |
16 |
|
|
|
17 |
|
|
/*! @brief trigger configuration cut: trigger conf. must be TOF1 |
18 |
|
|
*/ |
19 |
|
|
class TrgConfCut: public PamCut { |
20 |
|
|
|
21 |
|
|
public: |
22 |
|
|
/*! @brief Constructor. */ |
23 |
|
|
TrgConfCut(const char *cutName): PamCut(cutName){ |
24 |
|
|
} |
25 |
|
|
/*! @brief Destructor. */ |
26 |
|
|
~TrgConfCut() { |
27 |
|
|
} |
28 |
|
|
|
29 |
|
|
/*! @brief The trigger configuration check. |
30 |
|
|
* |
31 |
|
|
* @param event The event to analyze. |
32 |
|
|
* @return #CUTOK if trigger configuration is TOF1 |
33 |
|
|
* @return 0 otherwise |
34 |
|
|
*/ |
35 |
|
|
int Check(PamLevel2 *event); |
36 |
|
|
|
37 |
|
|
}; |
38 |
|
|
#endif /* TRGCONFCUT_H_ */ |