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

Annotation of /PamCut/CaloCuts/CaloAngleCut/CaloAngleCut.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Mon Jan 18 15:55:01 2010 UTC (14 years, 10 months ago) by pam-fi
Branch: MAIN
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