CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
DQMTauProducer Class Reference

#include <DQMTauProducer.h>

Inheritance diagram for DQMTauProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 DQMTauProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~DQMTauProducer () override
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducer () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

double isolationCone_
 
double matchingCone_
 
double ptMin_
 
double ptMinLeadTk_
 
double rmax_
 
double rmin_
 
double signalCone_
 
edm::EDGetTokenT< reco::IsolatedTauTagInfoCollectiontrackIsolatedJets_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 18 of file DQMTauProducer.h.

Constructor & Destructor Documentation

DQMTauProducer::DQMTauProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 8 of file DQMTauProducer.cc.

References edm::ParameterSet::getParameter(), isolationCone_, matchingCone_, ptMin_, signalCone_, and trackIsolatedJets_.

9 {
10  trackIsolatedJets_ = consumes<reco::IsolatedTauTagInfoCollection>(iConfig.getParameter<edm::InputTag>("TrackIsoJets"));
11  matchingCone_ = iConfig.getParameter<double>("MatchingCone");
12  signalCone_ = iConfig.getParameter<double>("SignalCone");
13  ptMin_ = iConfig.getParameter<double>("MinPtTracks");
14 
15  isolationCone_ = iConfig.getParameter<double>("IsolationCone");
16  produces<reco::HLTTauCollection>();
17 }
T getParameter(std::string const &) const
edm::EDGetTokenT< reco::IsolatedTauTagInfoCollection > trackIsolatedJets_
double isolationCone_
double matchingCone_
DQMTauProducer::~DQMTauProducer ( )
override

Definition at line 19 of file DQMTauProducer.cc.

19 { }

Member Function Documentation

void DQMTauProducer::produce ( edm::Event iEvent,
const edm::EventSetup iES 
)
override

Definition at line 21 of file DQMTauProducer.cc.

References mvaPFMET_leptons_cfi::discriminator, edm::Event::getByToken(), mps_fire::i, createfilelist::int, isolationCone_, impactParameterTagInfos_cfi::jetTracks, matchingCone_, eostools::move(), nTracks(), edm::Handle< T >::product(), ptMin_, edm::Event::put(), objectSelection_cff::selectedTaus, reco::HLTTau::setNL25TrackIsolation(), reco::HLTTau::setNL3TrackIsolation(), signalCone_, metsig::tau, and trackIsolatedJets_.

22 {
23 
24  using namespace reco;
25  using namespace edm;
26  using namespace std;
27 
28 
29  HLTTauCollection * jetCollection = new HLTTauCollection;
30 
31 
33  iEvent.getByToken(trackIsolatedJets_, tauL25Jets );
34 
35 
36  IsolatedTauTagInfoCollection tau = *(tauL25Jets.product());
37 
38 
39  float eta_, phi_, pt_;
40  float ptLeadTk=0.;
41  int trackIsolation=1000.;
42  int nTracks=1000.;
43 
44  for(unsigned int i=0; i<tau.size();i++)
45  {
46  JetTracksAssociationRef jetTracks = tau[i].jtaRef();
47  math::XYZVector jetDir(jetTracks->first->px(),jetTracks->first->py(),jetTracks->first->pz());
48  eta_ = jetDir.eta();
49  phi_ = jetDir.phi();
50  pt_ = jetTracks->first->pt();
51 
52  const TrackRef leadTk = tau[i].leadingSignalTrack(jetDir,matchingCone_, 1.);
53  if(!leadTk)
54  {}else{
55  trackIsolation = (int)tau[i].discriminator(jetDir,matchingCone_, signalCone_, isolationCone_,1.,1.,0);
56  ptLeadTk = (*leadTk).pt();
57  nTracks = (tau[i].tracksInCone((*leadTk).momentum(), isolationCone_, ptMin_ )).size() - (tau[i].tracksInCone((*leadTk).momentum(), signalCone_, ptMin_ )).size();
58  }
59  HLTTau pippo(eta_,phi_,pt_,-1,trackIsolation,ptLeadTk,trackIsolation,ptLeadTk);
60  pippo.setNL25TrackIsolation(nTracks);
61  pippo.setNL3TrackIsolation(nTracks);
62  jetCollection->push_back(pippo);
63 
64  }
65 
66 
67  std::unique_ptr<reco::HLTTauCollection> selectedTaus(jetCollection);
68 
69  iEvent.put(std::move(selectedTaus));
70 
71 
72 
73 
74 }
const unsigned int nTracks(const reco::Vertex &sv)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
edm::EDGetTokenT< reco::IsolatedTauTagInfoCollection > trackIsolatedJets_
double isolationCone_
selectedTaus
====================================== Taus
double matchingCone_
std::vector< IsolatedTauTagInfo > IsolatedTauTagInfoCollection
std::vector< HLTTau > HLTTauCollection
collection of HLTTau objects
Definition: HLTTauFwd.h:9
T const * product() const
Definition: Handle.h:74
XYZVectorD XYZVector
spatial vector with cartesian internal representation
Definition: Vector3D.h:30
fixed size matrix
HLT enums.
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

double DQMTauProducer::isolationCone_
private

Definition at line 26 of file DQMTauProducer.h.

Referenced by DQMTauProducer(), and produce().

double DQMTauProducer::matchingCone_
private

Definition at line 26 of file DQMTauProducer.h.

Referenced by DQMTauProducer(), and produce().

double DQMTauProducer::ptMin_
private

Definition at line 26 of file DQMTauProducer.h.

Referenced by DQMTauProducer(), and produce().

double DQMTauProducer::ptMinLeadTk_
private

Definition at line 26 of file DQMTauProducer.h.

double DQMTauProducer::rmax_
private

Definition at line 26 of file DQMTauProducer.h.

double DQMTauProducer::rmin_
private

Definition at line 26 of file DQMTauProducer.h.

double DQMTauProducer::signalCone_
private

Definition at line 26 of file DQMTauProducer.h.

Referenced by DQMTauProducer(), and produce().

edm::EDGetTokenT<reco::IsolatedTauTagInfoCollection> DQMTauProducer::trackIsolatedJets_
private

Definition at line 25 of file DQMTauProducer.h.

Referenced by DQMTauProducer(), and produce().