CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
GeneralTracksImporterWithVeto Class Reference
Inheritance diagram for GeneralTracksImporterWithVeto:
BlockElementImporterBase

Public Member Functions

 GeneralTracksImporterWithVeto (const edm::ParameterSet &conf, edm::ConsumesCollector &sumes)
 
void importToBlock (const edm::Event &, ElementList &) const override
 
- Public Member Functions inherited from BlockElementImporterBase
 BlockElementImporterBase (const edm::ParameterSet &conf, edm::ConsumesCollector &sumes)
 
 BlockElementImporterBase (const BlockElementImporterBase &)=delete
 
const std::string & name () const
 
BlockElementImporterBaseoperator= (const BlockElementImporterBase &)=delete
 
virtual void updateEventSetup (const edm::EventSetup &)
 
virtual ~BlockElementImporterBase ()=default
 

Private Member Functions

int muAssocToTrack (const reco::TrackRef &trackref, const edm::Handle< reco::MuonCollection > &muonh) const
 

Private Attributes

const bool cleanBadConvBrems_
 
const bool debug_
 
const std::vector< double > DPtovPtCut_
 
edm::EDGetTokenT< reco::MuonCollectionmuons_
 
const std::vector< unsigned > NHitCut_
 
std::unique_ptr< PFMuonAlgopfmu_
 
edm::EDGetTokenT< reco::PFRecTrackCollectionsrc_
 
const bool useIterTracking_
 
edm::EDGetTokenT< reco::PFRecTrackCollectionveto_
 

Additional Inherited Members

- Public Types inherited from BlockElementImporterBase
typedef std::vector< std::unique_ptr< reco::PFBlockElement > > ElementList
 

Detailed Description

Definition at line 12 of file GeneralTracksImporterWithVeto.cc.

Constructor & Destructor Documentation

GeneralTracksImporterWithVeto::GeneralTracksImporterWithVeto ( const edm::ParameterSet conf,
edm::ConsumesCollector sumes 
)
inline

Definition at line 14 of file GeneralTracksImporterWithVeto.cc.

References importToBlock(), muAssocToTrack(), and pfmu_.

15  :
16  BlockElementImporterBase(conf,sumes),
20  DPtovPtCut_(conf.getParameter<std::vector<double> >("DPtOverPtCuts_byTrackAlgo")),
21  NHitCut_(conf.getParameter<std::vector<unsigned> >("NHitCuts_byTrackAlgo")),
22  useIterTracking_(conf.getParameter<bool>("useIterativeTracking")),
23  cleanBadConvBrems_(conf.existsAs<bool>("cleanBadConvertedBrems") ? conf.getParameter<bool>("cleanBadConvertedBrems") : false),
24  debug_(conf.getUntrackedParameter<bool>("debug",false)) {
25 
26  pfmu_ = std::unique_ptr<PFMuonAlgo>(new PFMuonAlgo(conf));
27 
28  }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:161
edm::EDGetTokenT< reco::MuonCollection > muons_
edm::EDGetTokenT< reco::PFRecTrackCollection > veto_
std::vector< Muon > MuonCollection
collection of Muon objects
Definition: MuonFwd.h:9
edm::EDGetTokenT< reco::PFRecTrackCollection > src_
BlockElementImporterBase(const edm::ParameterSet &conf, edm::ConsumesCollector &sumes)
std::vector< PFRecTrack > PFRecTrackCollection
collection of PFRecTrack objects
Definition: PFRecTrackFwd.h:9
const std::vector< unsigned > NHitCut_

Member Function Documentation

void GeneralTracksImporterWithVeto::importToBlock ( const edm::Event e,
BlockElementImporterBase::ElementList elems 
) const
overridevirtual

Implements BlockElementImporterBase.

Definition at line 52 of file GeneralTracksImporterWithVeto.cc.

References a, cleanBadConvBrems_, reco::PFBlockElementTrack::convRefs(), gather_cfg::cout, debug_, reco::PFBlockElementTrack::displacedVertexRef(), SoftLeptonByDistance_cfi::distance, DPtovPtCut_, edm::RefVector< C, T, F >::empty(), edm::Event::getHandle(), PFTrackAlgoTools::goodPtResolution(), mps_fire::i, training_settings::idx, PFMuonAlgo::isLooseMuon(), PFMuonAlgo::isMuon(), edm::Ref< C, T, F >::isNull(), crabWrapper::key, edm::Ref< C, T, F >::key(), RecoTauDiscriminantConfiguration::mask, muAssocToTrack(), extraflags_cff::muons, muons_, NHitCut_, pfmu_, reco::PFBlockElementTrack::setMuonRef(), src_, reco::PFBlockElement::T_FROM_DISP, reco::PFBlockElement::T_FROM_GAMMACONV, HiIsolationCommonParameters_cff::track, reco::PFBlockElement::TRACK, reco::PFBlockElementTrack::trackRef(), l1t::tracks, reco::PFBlockElementTrack::trackType(), useIterTracking_, reco::PFBlockElementTrack::V0Ref(), veto_, and boostedElectronIsolation_cff::vetos.

Referenced by GeneralTracksImporterWithVeto().

53  {
55  auto tracks = e.getHandle(src_);
56  auto vetosH = e.getHandle(veto_);
57  const auto& vetos = *vetosH;
58  std::unordered_set<unsigned> vetoed;
59  for(unsigned i = 0; i < vetos.size(); ++i ) {
60  vetoed.insert(vetos[i].trackRef().key());
61  }
62  auto muons = e.getHandle(muons_);
63  elems.reserve(elems.size() + tracks->size());
64  std::vector<bool> mask(tracks->size(),true);
65  reco::MuonRef muonref;
66 
67  // remove converted brems with bad pT resolution if requested
68  // this reproduces the old behavior of PFBlockAlgo
69  if( cleanBadConvBrems_ ) {
70  auto itr = elems.begin();
71  while( itr != elems.end() ) {
72  if( (*itr)->type() == reco::PFBlockElement::TRACK ) {
73  const reco::PFBlockElementTrack* trkel =
74  static_cast<reco::PFBlockElementTrack*>(itr->get());
75  const reco::ConversionRefVector& cRef = trkel->convRefs();
76  const reco::PFDisplacedTrackerVertexRef& dvRef =
79  trkel->V0Ref();
80  // if there is no displaced vertex reference and it is marked
81  // as a conversion it's gotta be a converted brem
83  cRef.empty() && dvRef.isNull() && v0Ref.isNull() ) {
84  // if the Pt resolution is bad we kill this element
86  itr = elems.erase(itr);
87  continue;
88  }
89  }
90  }
91  ++itr;
92  } // loop on existing elements
93  }
94  // preprocess existing tracks in the element list and create a mask
95  // so that we do not import tracks twice, tag muons we find
96  // in this collection
97  auto TKs_end = std::partition(elems.begin(),elems.end(),
98  [](const ElementType& a){
99  return a->type() == reco::PFBlockElement::TRACK;
100  });
101  auto btk_elems = elems.begin();
102  auto btrack = tracks->cbegin();
103  auto etrack = tracks->cend();
104  for( auto track = btrack; track != etrack; ++track) {
105  auto tk_elem = std::find_if(btk_elems,TKs_end,
106  [&](const ElementType& a){
107  return ( a->trackRef() ==
108  track->trackRef() );
109  });
110  if( tk_elem != TKs_end ) {
111  mask[std::distance(tracks->cbegin(),track)] = false;
112  // check and update if this track is a muon
113  const int muId = muAssocToTrack( (*tk_elem)->trackRef(), muons );
114  if( muId != -1 ) {
115  muonref= reco::MuonRef( muons, muId );
116  if( PFMuonAlgo::isLooseMuon(muonref) || PFMuonAlgo::isMuon(muonref) ) {
117  static_cast<reco::PFBlockElementTrack*>(tk_elem->get())->setMuonRef(muonref);
118  }
119  }
120  }
121  }
122  // now we actually insert tracks, again tagging muons along the way
123  reco::PFRecTrackRef pftrackref;
124  reco::PFBlockElementTrack* trkElem = nullptr;
125  for( auto track = btrack; track != etrack; ++track) {
126  const unsigned idx = std::distance(btrack,track);
127  // since we already set muon refs in the previously imported tracks,
128  // here we can skip everything that is already imported
129  if( !mask[idx] ) continue;
130  muonref = reco::MuonRef();
131  pftrackref = reco::PFRecTrackRef(tracks,idx);
132  // Get the eventual muon associated to this track
133  const int muId = muAssocToTrack( pftrackref->trackRef(), muons );
134  bool thisIsAPotentialMuon = false;
135  if( muId != -1 ) {
136  muonref= reco::MuonRef( muons, muId );
137  thisIsAPotentialMuon = ( (pfmu_->hasValidTrack(muonref,true)&&PFMuonAlgo::isLooseMuon(muonref)) ||
138  (pfmu_->hasValidTrack(muonref,false)&&PFMuonAlgo::isMuon(muonref)));
139  }
140  if(thisIsAPotentialMuon || PFTrackAlgoTools::goodPtResolution( pftrackref->trackRef(), DPtovPtCut_, NHitCut_, useIterTracking_, debug_ ) ) {
141  trkElem = new reco::PFBlockElementTrack( pftrackref );
142  if (thisIsAPotentialMuon && debug_) {
143  std::cout << "Potential Muon P " << pftrackref->trackRef()->p()
144  << " pt " << pftrackref->trackRef()->p() << std::endl;
145  }
146  if( muId != -1 ) trkElem->setMuonRef(muonref);
147  if( vetoed.count(pftrackref->trackRef().key()) == 0 || muonref.isNonnull()){
148  elems.emplace_back(trkElem);
149  }
150  else delete trkElem;
151  }
152  }
153  elems.shrink_to_fit();
154 }
int muAssocToTrack(const reco::TrackRef &trackref, const edm::Handle< reco::MuonCollection > &muonh) const
static bool isMuon(const reco::PFBlockElement &elt)
Definition: PFMuonAlgo.cc:66
edm::EDGetTokenT< reco::MuonCollection > muons_
const reco::TrackRef & trackRef() const override
const ConversionRefVector & convRefs() const override
bool trackType(TrackType trType) const override
edm::EDGetTokenT< reco::PFRecTrackCollection > veto_
key_type key() const
Accessor for product key.
Definition: Ref.h:263
bool empty() const
Is the RefVector empty.
Definition: RefVector.h:104
Handle< PROD > getHandle(EDGetTokenT< PROD > token) const
Definition: Event.h:539
edm::EDGetTokenT< reco::PFRecTrackCollection > src_
edm::Ref< PFRecTrackCollection > PFRecTrackRef
persistent reference to PFRecTrack objects
Definition: PFRecTrackFwd.h:15
const VertexCompositeCandidateRef & V0Ref() const override
edm::Ref< MuonCollection > MuonRef
presistent reference to a Muon
Definition: MuonFwd.h:13
bool isNull() const
Checks for null.
Definition: Ref.h:248
const PFDisplacedTrackerVertexRef & displacedVertexRef(TrackType trType) const override
static bool isLooseMuon(const reco::PFBlockElement &elt)
Definition: PFMuonAlgo.cc:78
double a
Definition: hdecay.h:121
void setMuonRef(const MuonRef &muref) override
reference to the Muon
bool goodPtResolution(const reco::TrackRef &, const std::vector< double > &DPtovPtCut, const std::vector< unsigned > &NHitCut, bool useIterTracking, bool debug=false)
const std::vector< unsigned > NHitCut_
int GeneralTracksImporterWithVeto::muAssocToTrack ( const reco::TrackRef trackref,
const edm::Handle< reco::MuonCollection > &  muonh 
) const
private

Definition at line 157 of file GeneralTracksImporterWithVeto.cc.

References SoftLeptonByDistance_cfi::distance, funct::m, and metsig::muon.

Referenced by GeneralTracksImporterWithVeto(), and importToBlock().

158  {
159  auto muon = std::find_if(muonh->cbegin(),muonh->cend(),
160  [&](const reco::Muon& m) {
161  return ( m.track().isNonnull() &&
162  m.track() == trackref );
163  });
164  return ( muon != muonh->cend() ? std::distance(muonh->cbegin(),muon) : -1 );
165 }

Member Data Documentation

const bool GeneralTracksImporterWithVeto::cleanBadConvBrems_
private

Definition at line 41 of file GeneralTracksImporterWithVeto.cc.

Referenced by importToBlock().

const bool GeneralTracksImporterWithVeto::debug_
private

Definition at line 41 of file GeneralTracksImporterWithVeto.cc.

Referenced by importToBlock().

const std::vector<double> GeneralTracksImporterWithVeto::DPtovPtCut_
private

Definition at line 39 of file GeneralTracksImporterWithVeto.cc.

Referenced by importToBlock().

edm::EDGetTokenT<reco::MuonCollection> GeneralTracksImporterWithVeto::muons_
private

Definition at line 38 of file GeneralTracksImporterWithVeto.cc.

Referenced by importToBlock().

const std::vector<unsigned> GeneralTracksImporterWithVeto::NHitCut_
private

Definition at line 40 of file GeneralTracksImporterWithVeto.cc.

Referenced by importToBlock().

std::unique_ptr<PFMuonAlgo> GeneralTracksImporterWithVeto::pfmu_
private
edm::EDGetTokenT<reco::PFRecTrackCollection> GeneralTracksImporterWithVeto::src_
private

Definition at line 37 of file GeneralTracksImporterWithVeto.cc.

Referenced by importToBlock().

const bool GeneralTracksImporterWithVeto::useIterTracking_
private

Definition at line 41 of file GeneralTracksImporterWithVeto.cc.

Referenced by importToBlock().

edm::EDGetTokenT<reco::PFRecTrackCollection> GeneralTracksImporterWithVeto::veto_
private

Definition at line 37 of file GeneralTracksImporterWithVeto.cc.

Referenced by importToBlock().