Parent Directory | Revision Log
First import
1 | /* |
2 | * TrkRigCut.cpp |
3 | * |
4 | * Created on: 13-mar-2009 |
5 | * Author: Sergio Ricciarini, Nicola Mori |
6 | */ |
7 | |
8 | /*! @file TrkRigCut.cpp The TrkRigCut class implementation file */ |
9 | |
10 | #include "TrkRigCut.h" |
11 | |
12 | int TrkRigCut::Check(PamLevel2 *event) { |
13 | |
14 | TrkTrack *trkTrack = event->GetTrack(0)->GetTrkTrack(); |
15 | |
16 | if (!(1 / (trkTrack->GetDeflection()) > _minRigidity)) { |
17 | return 0; |
18 | } |
19 | |
20 | return CUTOK; |
21 | } |
ViewVC Help | |
Powered by ViewVC 1.1.23 |