Parent Directory | Revision Log
Added to repository.
1 | pam-fi | 1.1 | /* |
2 | * CaloAngleCut.cpp | ||
3 | * | ||
4 | * Created on: 11-jan-2010 | ||
5 | * Author: S. Ricciarini | ||
6 | */ | ||
7 | |||
8 | /*! @file CaloAngleCut.cpp */ | ||
9 | |||
10 | #include "CaloAngleCut.h" | ||
11 | #define PI 3.14159265 | ||
12 | |||
13 | int CaloAngleCut::Check(PamLevel2 *event) { | ||
14 | |||
15 | Double_t xAngle; | ||
16 | |||
17 | xAngle = atan(_xCaloAxis->par[1])*180/PI; // par[1]=tg(theta) . xAngle expressed in degrees | ||
18 | if (! (_minXAngle < xAngle && xAngle < _maxXAngle) ) { | ||
19 | return 0; | ||
20 | } | ||
21 | |||
22 | return CUTOK; | ||
23 | } |
ViewVC Help | |
Powered by ViewVC 1.1.23 |