Parent Directory | Revision Log
CaloQtotCut added.
1 | /* |
2 | * CaloQtotCut.cpp |
3 | * Created on: 10-mar-2010 |
4 | * Author: S. Ricciarini |
5 | */ |
6 | |
7 | /*! @file CaloQtotCut.cpp The CaloQtotCut class implementation file */ |
8 | |
9 | #include "CaloQtotCut.h" |
10 | |
11 | int CaloQtotCut::Check(PamLevel2 *event) { |
12 | |
13 | Float_t qTot = event->GetCaloLevel2()->qtot; |
14 | if ( ! (_qTotMin < qTot && qTot < _qTotMax) ) { |
15 | return 1; |
16 | } |
17 | |
18 | return CUTOK; |
19 | |
20 | } |
ViewVC Help | |
Powered by ViewVC 1.1.23 |