Parent Directory
|
Revision Log
Initial revision
| 1 | pam-mep | 1.1 | /* |
| 2 | * PitchAngleCut.cpp | ||
| 3 | * | ||
| 4 | * Created on: 27-Marth-2010 | ||
| 5 | * Author: Vitaly Malakhov | ||
| 6 | */ | ||
| 7 | |||
| 8 | /*! @file PitchAngleCut.cpp The PitchAngleCut class implementation file */ | ||
| 9 | |||
| 10 | #include "PitchAngleCut.h" | ||
| 11 | |||
| 12 | int PitchAngleCut::Check(PamLevel2 *event) { | ||
| 13 | |||
| 14 | if (event->GetOrbitalInfoStoredTrack(-1)->pitch <= _pitchMin && event->GetOrbitalInfoStoredTrack(-1)->pitch > _pitchMax ) { | ||
| 15 | return 0; | ||
| 16 | } | ||
| 17 | |||
| 18 | return CUTOK; | ||
| 19 | |||
| 20 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |