/[PAMELA software]/PamCut/CaloCuts/CaloAngleCut/CaloAngleCut.cpp
ViewVC logotype

Contents of /PamCut/CaloCuts/CaloAngleCut/CaloAngleCut.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2.2.1 - (show annotations) (download)
Thu Jul 8 10:43:08 2010 UTC (14 years, 4 months ago) by pam-fi
Branch: V8
CVS Tags: MergedToHEAD_1, nuclei_reproc
Changes since 1.2: +3 -0 lines
Support for external CaloAxis library added.

1 /*
2 * CaloAngleCut.cpp
3 *
4 * Created on: 11-jan-2010
5 * Author: S. Ricciarini
6 */
7
8 /*! @file CaloAngleCut.cpp */
9 #ifndef NO_CALOAXIS
10
11 #include "CaloAngleCut.h"
12
13 int CaloAngleCut::Check(PamLevel2 *event) {
14
15 static const double pi = 3.14159265;
16 Double_t xAngle;
17
18 xAngle = atan(_xCaloAxis->par[1])*180/pi; // par[1]=tg(theta) . xAngle expressed in degrees
19 if (! (_minXAngle < xAngle && xAngle < _maxXAngle) ) {
20 return 0;
21 }
22
23 return CUTOK;
24 }
25
26 #endif /* NO_CALOAXIS */

  ViewVC Help
Powered by ViewVC 1.1.23