/[PAMELA software]/PamCut/ACCuts/CARDCut/CARDCut.h
ViewVC logotype

Contents of /PamCut/ACCuts/CARDCut/CARDCut.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (download) (vendor branch)
Wed May 27 13:30:09 2009 UTC (15 years, 6 months ago) by pam-fi
Branch: DEV, MAIN
CVS Tags: v0r00, Root_V8, MergedToHEAD_1, nuclei_reproc, MergedFromV8_1, BeforeMergingFromV8_1, V9, HEAD
Branch point for: V8
Changes since 1.1: +0 -0 lines
File MIME type: text/plain
First import

1 /*
2 * CARDCut.h
3 *
4 * Created on: 13-mar-2009
5 * Author: Nicola Mori
6 */
7
8 /*! @file CARDCut.h The CARDCut class definition file */
9
10 #ifndef CARDCUT_H_
11 #define CARDCUT_H_
12
13 #include "../../PamCutBase/PamCutBase.h"
14
15 /*! @brief The CARD cut.
16 * An event survives this cut only if no CARD scintillator has signal.
17 */
18
19 class CARDCut: public PamCut {
20
21 public:
22 /*! @brief Constructor.
23 *
24 * @param cutName The cut's name.
25 */
26 CARDCut(const char *cutName) :
27 PamCut(cutName) {
28 }
29 /*! @brief Destructor. */
30 ~CARDCut() {
31 }
32
33 /*! @brief The CARD check.
34 *
35 * @param event The event to analyze.
36 * @return #CUTOK if all the CARD scintillators show no signal
37 * @return 0 if there's a signal on at least one scintillator
38 */
39 int Check(PamLevel2 *event);
40 };
41 #endif /* CARDCUT_H_ */

  ViewVC Help
Powered by ViewVC 1.1.23