Parent Directory | Revision Log
Added to repository.
1 | pam-fi | 1.1 | /* |
2 | * StoermerCut.cpp | ||
3 | * | ||
4 | * Created on: 10-jun-2009 | ||
5 | * Author: Sergio Ricciarini, Nicola Mori | ||
6 | */ | ||
7 | |||
8 | /*! @file StoermerCut.cpp The StoermerCut class implementation file. */ | ||
9 | |||
10 | #include "StoermerCut.h" | ||
11 | |||
12 | int StoermerCut::Check(PamLevel2 * event) { | ||
13 | |||
14 | Float_t cutoff = event->GetOrbitalInfo()->GetCutoffSVL(); | ||
15 | if (cutoff < _minR || cutoff > _maxR ) | ||
16 | return 0; | ||
17 | |||
18 | return CUTOK; | ||
19 | } |
ViewVC Help | |
Powered by ViewVC 1.1.23 |