--- PamCut/TrkCuts/TrkGeomCut/TrkGeomCut.h 2009/05/27 13:30:08 1.1 +++ PamCut/TrkCuts/TrkGeomCut/TrkGeomCut.h 2010/03/10 08:54:20 1.2 @@ -2,7 +2,7 @@ * TrkGeomCut.h * * Created on: 13-mar-2009 - * Author: Nicola Mori, S. Ricciarini + * Author: N. Mori, S. Ricciarini */ /*! @file TrkGeomCut.h The TrkGeomCut class definition file */ @@ -27,11 +27,13 @@ * (yTol) on each side of the X (Y) view. * * @param cutName The cut's name. - * @param xTol The fiducial border on X view in cm. - * @param yTol The fiducial border on Y view in cm. + * @param xTol The fiducial border on X view for a generic plane in cm. + * @param yTol The fiducial border on Y view for a generic plane in cm. + * @param xMagnTol The fiducial border on X view for M1 and M2 in cm. + * @param yMagnTol The fiducial border on Y view for M1 and M2 in cm. */ - TrkGeomCut(const char *cutName, float xTol, float yTol) : - PamCut(cutName), _xTol(xTol), _yTol(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) : + PamCut(cutName), _xTol(xTol), _yTol(yTol), _xMagnTol(xMagnTol), _yMagnTol(yMagnTol) { } /*! @brief Destructor. */ ~TrkGeomCut() { @@ -47,8 +49,8 @@ private: - float _xTol; - float _yTol; + Float_t _xTol, _yTol; + Float_t _xMagnTol, _yMagnTol; }; #endif /* TRKGEOMCUT_H_ */