CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
L1THLTTauMatching Class Reference

#include <L1THLTTauMatching.h>

Inheritance diagram for L1THLTTauMatching:
edm::global::EDProducer<> edm::global::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 L1THLTTauMatching (const edm::ParameterSet &)
 
virtual void produce (edm::StreamID, edm::Event &, const edm::EventSetup &) const override
 
 ~L1THLTTauMatching ()
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::global::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Private Attributes

const edm::EDGetTokenT
< reco::PFTauCollection
jetSrc
 
const double mEt_Min
 
const edm::EDGetTokenT
< trigger::TriggerFilterObjectWithRefs
tauTrigger
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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 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 21 of file L1THLTTauMatching.h.

Constructor & Destructor Documentation

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

Definition at line 15 of file L1THLTTauMatching.cc.

15  :
16  jetSrc ( consumes<PFTauCollection> (iConfig.getParameter<InputTag>("JetSrc" ) ) ),
17  tauTrigger( consumes<trigger::TriggerFilterObjectWithRefs>(iConfig.getParameter<InputTag>("L1TauTrigger") ) ),
18  mEt_Min ( iConfig.getParameter<double> ("EtMin" ) )
19 {
20  produces<PFTauCollection>();
21 }
const edm::EDGetTokenT< reco::PFTauCollection > jetSrc
T getParameter(std::string const &) const
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > tauTrigger
const double mEt_Min
L1THLTTauMatching::~L1THLTTauMatching ( )

Definition at line 22 of file L1THLTTauMatching.cc.

22 { }

Member Function Documentation

void L1THLTTauMatching::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 65 of file L1THLTTauMatching.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), HLT_25ns10e33_v2_cff::InputTag, edm::ConfigurationDescriptions::setComment(), and edm::ParameterDescriptionNode::setComment().

66 {
68  desc.add<edm::InputTag>("L1TauTrigger", edm::InputTag("hltL1sDoubleIsoTau40er" ))->setComment("Name of trigger filter" );
69  desc.add<edm::InputTag>("JetSrc" , edm::InputTag("hltSelectedPFTausTrackPt1MediumIsolationReg"))->setComment("Input collection of PFTaus");
70  desc.add<double> ("EtMin",0.0)->setComment("Minimal pT of PFTau to match");
71  descriptions.setComment("This module produces collection of PFTaus matched to L1 Taus / Jets passing a HLT filter (Only p4 and vertex of returned PFTaus are set).");
72  descriptions.add ("L1THLTTauMatching",desc);
73 }
void setComment(std::string const &value)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void setComment(std::string const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void L1THLTTauMatching::produce ( edm::StreamID  iSId,
edm::Event iEvent,
const edm::EventSetup iES 
) const
overridevirtual

Implements edm::global::EDProducerBase.

Definition at line 24 of file L1THLTTauMatching.cc.

References a, deltaR(), HLT_25ns10e33_v2_cff::DeltaR, edm::Event::getByToken(), edm::Ptr< T >::isNonnull(), jetSrc, reco::PFTau::leadPFChargedHadrCand(), mEt_Min, reco::LeafCandidate::p4(), reco::LeafCandidate::pt(), edm::Event::put(), tauTrigger, and trigger::TriggerL1Tau.

25 {
26 
27  auto_ptr<PFTauCollection> tauL2jets(new PFTauCollection);
28 
29  double deltaR = 1.0;
30  double matchingR = 0.5;
31 
32  // Getting HLT jets to be matched
34  iEvent.getByToken( jetSrc, tauJets );
35 
37  iEvent.getByToken(tauTrigger,l1TriggeredTaus);
38 
39  l1t::TauVectorRef tauCandRefVec;
40  l1TriggeredTaus->getObjects( trigger::TriggerL1Tau,tauCandRefVec);
41 
42  math::XYZPoint a(0.,0.,0.);
43 
44  for(unsigned int iL1Tau = 0; iL1Tau < tauCandRefVec.size(); iL1Tau++){
45  for(unsigned int iJet = 0; iJet < tauJets->size(); iJet++){
46  // Find the relative L2TauJets, to see if it has been reconstructed
47  const PFTau & myJet = (*tauJets)[iJet];
48  deltaR = ROOT::Math::VectorUtil::DeltaR(myJet.p4().Vect(), (tauCandRefVec[iL1Tau]->p4()).Vect());
49  if(deltaR < matchingR ) {
50  if(myJet.leadPFChargedHadrCand().isNonnull()){
51  a = myJet.leadPFChargedHadrCand()->vertex();
52  }
53  PFTau myPFTau(std::numeric_limits<int>::quiet_NaN(), myJet.p4(), a);
54  if(myJet.pt() > mEt_Min) {
55  tauL2jets->push_back(myPFTau);
56  }
57  break;
58  }
59  }
60  }
61 
62  iEvent.put(tauL2jets);
63 }
const edm::EDGetTokenT< reco::PFTauCollection > jetSrc
std::vector< PFTau > PFTauCollection
collection of PFTau objects
Definition: PFTauFwd.h:9
const PFCandidatePtr & leadPFChargedHadrCand() const
Definition: PFTau.cc:67
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > tauTrigger
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:169
const double mEt_Min
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
double a
Definition: hdecay.h:121
std::vector< TauRef > TauVectorRef
Definition: Tau.h:14
virtual const LorentzVector & p4() const final
four-momentum Lorentz vector
Definition: LeafCandidate.h:99
virtual double pt() const final
transverse momentum

Member Data Documentation

const edm::EDGetTokenT<reco::PFTauCollection> L1THLTTauMatching::jetSrc
private

Definition at line 30 of file L1THLTTauMatching.h.

Referenced by produce().

const double L1THLTTauMatching::mEt_Min
private

Definition at line 32 of file L1THLTTauMatching.h.

Referenced by produce().

const edm::EDGetTokenT<trigger::TriggerFilterObjectWithRefs> L1THLTTauMatching::tauTrigger
private

Definition at line 31 of file L1THLTTauMatching.h.

Referenced by produce().