/[PAMELA software]/PamCut/TrkCuts/TrkHitQualCut/TrkHitQualCut.cpp
ViewVC logotype

Contents of /PamCut/TrkCuts/TrkHitQualCut/TrkHitQualCut.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations) (download)
Wed Mar 25 17:38:09 2015 UTC (9 years, 8 months ago) by pam-fi
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +4 -1 lines
Port to 10th reduction.

Some cuts have been modified to use the extended track objects introduced with 10th reduction software. Some others have still to be ported.
Git ref: 4bd0c70baf73c56bddc08dca365cbff243ad8bc8
(Nicola)

1 /*
2 * TrkHitQualCut.cpp
3 *
4 * Created on: 13-mar-2009
5 * Author: Sergio Ricciarini
6 */
7
8 /*! @file TrkHitQualCut.cpp The TrkHitQualCut class implementation file */
9
10 #include "TrkHitQualCut.h"
11
12 int TrkHitQualCut::Check(PamLevel2 *event) {
13
14 if(event->GetNTracks(_trkAlg)==0)return 0;
15
16 // TrkTrack *trkTrack = event->GetTrack(0)->GetTrkTrack();
17 ExtTrack *trkTrack = event->GetTrack(0,_trkAlg)->GetExtTrack();
18
19 if (trkTrack->GetNX() < _xMinHit || // minimum number of X planes included in the track
20 trkTrack->GetNY() < _yMinHit || // minimum number of Y planes included in the track
21 trkTrack->GetLeverArmX() < _xLeverArm || // minimum LA for X view
22 trkTrack->axv[0]<_xAngMin || // minimum XZ angle
23 trkTrack->axv[0]>_xAngMax) // maximum XZ angle
24 return 0;
25
26 return CUTOK;
27
28 }

  ViewVC Help
Powered by ViewVC 1.1.23