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

Contents of /PamCut/TrkCuts/TrkGeomCut/TrkGeomCut.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations) (download)
Fri Mar 26 10:37:54 2010 UTC (14 years, 8 months ago) by pam-fi
Branch: MAIN
CVS Tags: Root_V8, MergedToHEAD_1, nuclei_reproc, MergedFromV8_1, BeforeMergingFromV8_1, V9
Branch point for: V8
Changes since 1.2: +4 -3 lines
File MIME type: text/plain
Documentation improved.

1 /*
2 * TrkGeomCut.h
3 *
4 * Created on: 13-mar-2009
5 * Author: N. Mori, S. Ricciarini
6 */
7
8 /*! @file TrkGeomCut.h The TrkGeomCut class definition file */
9
10 #ifndef TRKGEOMCUT_H_
11 #define TRKGEOMCUT_H_
12
13 #include "../../PamCutBase/PamCutBase.h"
14
15 /*! @brief The tracker fiducial acceptance cut.
16 * This cut checks if the track is inside the fiducial acceptance chosen for the tracker.
17 * CUT DEPENDENCIES: TrkPhysSin for object trkTrack
18 */
19
20 class TrkGeomCut: public PamCut {
21
22 public:
23 /*! @brief Constructor.
24 *
25 * The parameters are the width of the regions on each side of a view that define the
26 * fiducial acceptance region. The detector size is therefore reduce by an amount of xTol
27 * (yTol) on each side of the X (Y) view for all the GF planes except fot M1 and M2. For these,
28 * xMagnTol and yMagnTol will be used as parameters.
29 *
30 * @param cutName The cut's name.
31 * @param xTol The fiducial border on X view for a generic plane in cm (except M1 and M2).
32 * @param yTol The fiducial border on Y view for a generic plane in cm (except M1 and M2).
33 * @param xMagnTol The fiducial border on X view for M1 and M2 in cm.
34 * @param yMagnTol The fiducial border on Y view for M1 and M2 in cm.
35 */
36 TrkGeomCut(const char *cutName, Float_t xTol=0.15, Float_t yTol=0.15, Float_t xMagnTol=0.15, Float_t yMagnTol=0.15) :
37 PamCut(cutName), _xTol(xTol), _yTol(yTol), _xMagnTol(xMagnTol), _yMagnTol(yMagnTol) {
38 }
39 /*! @brief Destructor. */
40 ~TrkGeomCut() {
41 }
42
43 /*! @brief The tracker fiducial acceptance check.
44 *
45 * @param event The event to analyze.
46 * @return #CUTOK if the track is inside the fiducial acceptance.
47 * @return 0 otherwise.
48 */
49 int Check(PamLevel2 *event);
50
51 private:
52
53 Float_t _xTol, _yTol;
54 Float_t _xMagnTol, _yMagnTol;
55
56 };
57 #endif /* TRKGEOMCUT_H_ */

  ViewVC Help
Powered by ViewVC 1.1.23