/[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.1.1.1 by pam-fi, Wed May 27 13:30:08 2009 UTC revision 1.2 by pam-fi, Wed Mar 10 08:54:20 2010 UTC
# Line 2  Line 2 
2   * TrkGeomCut.h   * TrkGeomCut.h
3   *   *
4   *  Created on: 13-mar-2009   *  Created on: 13-mar-2009
5   *      Author: Nicola Mori, S. Ricciarini   *      Author: N. Mori, S. Ricciarini
6   */   */
7    
8  /*! @file TrkGeomCut.h The TrkGeomCut class definition file */  /*! @file TrkGeomCut.h The TrkGeomCut class definition file */
# Line 27  public: Line 27  public:
27     * (yTol) on each side of the X (Y) view.     * (yTol) on each side of the X (Y) view.
28     *     *
29     * @param cutName The cut's name.     * @param cutName The cut's name.
30     * @param xTol The fiducial border on X view in cm.     * @param xTol The fiducial border on X view for a generic plane in cm.
31     * @param yTol The fiducial border on Y view in cm.     * @param yTol The fiducial border on Y view for a generic plane in cm.
32       * @param xMagnTol The fiducial border on X view for M1 and M2 in cm.
33       * @param yMagnTol The fiducial border on Y view for M1 and M2 in cm.
34     */     */
35    TrkGeomCut(const char *cutName, float xTol, float yTol) :    TrkGeomCut(const char *cutName, Float_t xTol=0.15, Float_t yTol=0.15, Float_t xMagnTol=0.15, Float_t yMagnTol=0.15) :
36      PamCut(cutName), _xTol(xTol), _yTol(yTol) {      PamCut(cutName), _xTol(xTol), _yTol(yTol), _xMagnTol(xMagnTol), _yMagnTol(yMagnTol) {
37    }    }
38    /*! @brief Destructor. */    /*! @brief Destructor. */
39    ~TrkGeomCut() {    ~TrkGeomCut() {
# Line 47  public: Line 49  public:
49    
50  private:  private:
51    
52    float _xTol;    Float_t _xTol, _yTol;
53    float _yTol;    Float_t _xMagnTol, _yMagnTol;
54    
55  };  };
56  #endif /* TRKGEOMCUT_H_ */  #endif /* TRKGEOMCUT_H_ */

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

  ViewVC Help
Powered by ViewVC 1.1.23