00001 #ifndef HLTDisplacedmumuVtxProducer_h 00002 #define HLTDisplacedmumuVtxProducer_h 00003 00018 #include "FWCore/Framework/interface/EDProducer.h" 00019 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00020 #include "FWCore/Framework/interface/Event.h" 00021 #include "FWCore/Framework/interface/EventSetup.h" 00022 00023 00024 class HLTDisplacedmumuVtxProducer : public edm::EDProducer { 00025 public: 00026 explicit HLTDisplacedmumuVtxProducer(const edm::ParameterSet&); 00027 ~HLTDisplacedmumuVtxProducer(); 00028 00029 virtual void beginJob() ; 00030 virtual void produce(edm::Event&, const edm::EventSetup&); 00031 virtual void endJob() ; 00032 00033 private: 00034 edm::InputTag src_; 00035 double maxEta_; 00036 double minPt_; 00037 double minPtPair_; 00038 double minInvMass_; 00039 double maxInvMass_; 00040 int chargeOpt_; 00041 }; 00042 00043 #endif