ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ForwardAnalysis/Utilities/interface/LargestGenRapidityGap.h
Revision: 1.1
Committed: Wed Aug 24 13:19:04 2011 UTC (13 years, 8 months ago) by antoniov
Content type: text/plain
Branch: MAIN
CVS Tags: V01-01-01, V01-01-00, antoniov-forwardAnalysis-09Jul2012-v1, antoniov-forwardAnalysis-29Jun2012-v1, V01-00-00, antoniov-utilities-11Jun2012-v1, antoniov-forwardAnalysis-Oct072011-v1, sfonseca_10_04_2011, antoniov-forwardAnalysis-Sep182011-v1, antoniov-forwardAnalysis-Sep102011-v1, sfonseca_08_26_2011, forwardAnalysis-Aug232011-v1, HEAD
Error occurred while calculating annotation data.
Log Message:
include LargestGenRapidityGap class

File Contents

# Content
1 #ifndef ForwardAnalysis_Utilities_LargestGenRapidityGap_h
2 #define ForwardAnalysis_Utilities_LargestGenRapidityGap_h
3
4 /* \class LargestGenRapidityGap
5 *
6 * Usage: LargestGenRapidityGap(a,b)(...)
7 *
8 */
9
10 #include "DataFormats/HepMCCandidate/interface/GenParticleFwd.h"
11
12 #include "DataFormats/Math/interface/LorentzVector.h"
13
14 namespace forwardAnalysis {
15
16 class LargestGenRapidityGap {
17 public:
18 LargestGenRapidityGap(double etaEdgeLow, double etaEdgeHigh):
19 etaEdgeLow_(etaEdgeLow), etaEdgeHigh_(etaEdgeHigh) {}
20 ~LargestGenRapidityGap() {}
21
22 void operator()(reco::GenParticleCollection const&,math::XYZTLorentzVector&,
23 math::XYZTLorentzVector&);
24 private:
25 double etaEdgeLow_, etaEdgeHigh_;
26 };
27
28 } // namespace
29 #endif