/[PAMELA software]/PamCut/TrkCuts/TrkRigCut/TrkRigCut.h
ViewVC logotype

Contents of /PamCut/TrkCuts/TrkRigCut/TrkRigCut.h

Parent Directory Parent Directory | Revision Log Revision Log


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

1 /*
2 * TrkRigCut.h
3 *
4 * Created on: 13-mar-2009
5 * Author: Nicola Mori, S. Ricciarini
6 */
7
8 /*! @file TrkRigCut.h The TrkRigCut class definition file */
9
10 #ifndef TRKRIGCUT_H_
11 #define TRKRIGCUT_H_
12
13 #include "../../PamCutBase/PamCutBase.h"
14
15 /*! @brief The rigidity cut.
16 * This cut discards all the events whose rigidity is less than the threshold.
17 * Here rigidity is defined as p/Z (GV) where Z is the particle charge (WITH SIGN) and p the momentum modulus: therefore rigidity can be positive or negative.
18 */
19 class TrkRigCut: public PamCut {
20
21 public:
22 /*! @brief Constructor.
23 *
24 * @param cutName The cut's name.
25 * @param minRigidity The minimum rigidity p/Z (in GV) below which an event
26 * will be discarded. Can be positive or negative.
27 */
28 TrkRigCut(const char *cutName, float minRigidity) :
29 PamCut(cutName), _minRigidity(minRigidity) {
30 }
31 /*! @brief Destructor. */
32 ~TrkRigCut() {
33 }
34
35 /*! @brief The rigidity check.
36 *
37 * @param event The event to analyze.
38 * @return #CUTOK if the rigidity is greater than the threshold
39 * @return 0 otherwise.
40 */
41 int Check(PamLevel2 *event);
42
43 private:
44
45 float _minRigidity;
46
47 };
48 #endif /* TRKRIGCUT_H_ */

  ViewVC Help
Powered by ViewVC 1.1.23