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

Diff of /PamCut/TrkCuts/TrkGeomCut/TrkGeomCut.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by pam-fi, Wed Mar 10 08:54:20 2010 UTC revision 1.4 by pam-fi, Wed Mar 25 17:38:09 2015 UTC
# Line 24  public: Line 24  public:
24     *     *
25     * The parameters are the width of the regions on each side of a view that define the     * 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     * fiducial acceptance region. The detector size is therefore reduce by an amount of xTol
27     * (yTol) on each side of the X (Y) view.     * (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.     * @param cutName The cut's name.
31     * @param xTol The fiducial border on X view for a generic plane in cm.     * @param trkAlg        The tracking algorythm used to check the track.
32     * @param yTol The fiducial border on Y view for a generic plane in cm.     * @param xTol The fiducial border on X view for a generic plane in cm (except M1 and M2).
33       * @param yTol The fiducial border on Y view for a generic plane in cm (except M1 and M2).
34     * @param xMagnTol The fiducial border on X view for M1 and M2 in cm.     * @param xMagnTol The fiducial border on X view for M1 and M2 in cm.
35     * @param yMagnTol The fiducial border on Y view for M1 and M2 in cm.     * @param yMagnTol The fiducial border on Y view for M1 and M2 in cm.
36     */     */
37    TrkGeomCut(const char *cutName, Float_t xTol=0.15, Float_t yTol=0.15, Float_t xMagnTol=0.15, Float_t yMagnTol=0.15) :    TrkGeomCut(const char *cutName, const char *trkAlg, Float_t xTol=0.15, Float_t yTol=0.15, Float_t xMagnTol=0.15, Float_t yMagnTol=0.15) :
38      PamCut(cutName), _xTol(xTol), _yTol(yTol), _xMagnTol(xMagnTol), _yMagnTol(yMagnTol) {      PamCut(cutName), _trkAlg(trkAlg), _xTol(xTol), _yTol(yTol), _xMagnTol(xMagnTol), _yMagnTol(yMagnTol) {
39    }    }
40    /*! @brief Destructor. */    /*! @brief Destructor. */
41    ~TrkGeomCut() {    ~TrkGeomCut() {
# Line 47  public: Line 49  public:
49     */     */
50    int Check(PamLevel2 *event);    int Check(PamLevel2 *event);
51    
52    
53    
54    
55  private:  private:
56    
57      const char *_trkAlg;
58    Float_t _xTol, _yTol;    Float_t _xTol, _yTol;
59    Float_t _xMagnTol, _yMagnTol;    Float_t _xMagnTol, _yMagnTol;
60    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.23