CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MCDecayingPionKaonFilter.h
Go to the documentation of this file.
1 #ifndef MCDecayingPionKaonFilter_h
2 #define MCDecayingPionKaonFilter_h
3 // -*- C++ -*-
4 //
5 // Package: MCDecayingPionKaonFilter
6 // Class: MCDecayingPionKaonFilter
7 //
8 /*
9 
10  Description: filter events based on the Pythia particleID and the Pt_hat
11 
12  Implementation: inherits from generic EDFilter
13 
14 */
15 //
16 // Original Author: Juan Alcaraz (13/03/2008)
17 //
18 //
19 
20 
21 // system include files
22 #include <memory>
23 
24 // user include files
27 
30 
32 
33 
34 //
35 // class decleration
36 //
37 
39  public:
42 
43 
44  virtual bool filter(edm::Event&, const edm::EventSetup&);
45  private:
46  // ----------member data ---------------------------
47 
48  std::string label_;
49  std::vector<int> particleID;
50  std::vector<double> ptMin;
51  std::vector<double> etaMin;
52  std::vector<double> etaMax;
53  std::vector<double> decayRadiusMin;
54  std::vector<double> decayRadiusMax;
55  std::vector<double> decayZMin;
56  std::vector<double> decayZMax;
57  double ptMuMin;
58 };
59 #endif
std::vector< double > decayZMax
std::vector< double > decayRadiusMin
MCDecayingPionKaonFilter(const edm::ParameterSet &)
std::vector< double > decayRadiusMax
std::vector< double > decayZMin
virtual bool filter(edm::Event &, const edm::EventSetup &)