CMS 3D CMS Logo

JetTracksAssociatorAtCaloFace.cc
Go to the documentation of this file.
1 // \class JetTracksAssociatorAtCaloFace JetTracksAssociatorAtCaloFace.cc
2 //
3 // Original Author: Andrea Rizzi
4 // Created: Wed Apr 12 11:12:49 CEST 2006
5 // Accommodated for Jet Package by: Fedor Ratnikov Jul. 30, 2007
6 //
8 
15 
17 
19  : firstRun(true), dR_(fConfig.getParameter<double>("coneSize")) {
20  mJets = consumes<edm::View<reco::Jet> >(fConfig.getParameter<edm::InputTag>("jets"));
22  consumes<std::vector<reco::TrackExtrapolation> >(fConfig.getParameter<edm::InputTag>("extrapolations")),
23 
24  produces<reco::JetTracksAssociation::Container>();
25 }
26 
28  // Get geometry
29  if (firstRun) {
30  fSetup.get<CaloGeometryRecord>().get(pGeo);
31  firstRun = false;
32  }
33 
34  if (!pGeo.isValid()) {
35  throw cms::Exception("InvalidInput") << "Did not get geometry" << std::endl;
36  }
37 
38  // get stuff from Event
40  fEvent.getByToken(mJets, jets_h);
42  fEvent.getByToken(mExtrapolations, extrapolations_h);
43 
44  auto jetTracks = std::make_unique<reco::JetTracksAssociation::Container>(reco::JetRefBaseProd(jets_h));
45 
46  // Check to make sure we have inputs
47  if (jets_h->empty()) {
48  // store output regardless the size of the inputs
50  return;
51  }
52  // Check to make sure the inputs are calo jets
53  reco::CaloJet const* caloJet0 = dynamic_cast<reco::CaloJet const*>(&(jets_h->at(0)));
54  // Disallowed non-CaloJet inputs
55  if (caloJet0 == nullptr) {
56  throw cms::Exception("InvalidInput") << " Jet-track association is only defined for CaloJets.";
57  }
58 
59  // format inputs
60  std::vector<edm::RefToBase<reco::Jet> > allJets;
61  allJets.reserve(jets_h->size());
62  for (unsigned i = 0; i < jets_h->size(); ++i)
63  allJets.push_back(jets_h->refAt(i));
64  mAssociator.produce(&*jetTracks, allJets, *extrapolations_h, *pGeo, dR_);
65 
66  // store output
68 }
dataset.firstRun
firstRun
Definition: dataset.py:940
reco::CaloJet
Jets made from CaloTowers.
Definition: CaloJet.h:27
CaloJet.h
JetTracksAssociatorAtCaloFace.h
mps_fire.i
i
Definition: mps_fire.py:428
MessageLogger.h
CaloGeometryRecord
Definition: CaloGeometryRecord.h:30
Jet.h
JetTracksAssociatorAtCaloFace::JetTracksAssociatorAtCaloFace
JetTracksAssociatorAtCaloFace()
Definition: JetTracksAssociatorAtCaloFace.h:29
JetTracksAssociatorAtCaloFace::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: JetTracksAssociatorAtCaloFace.cc:27
edm::Handle
Definition: AssociativeIterator.h:50
JetTracksAssociatorAtCaloFace::mAssociator
JetTracksAssociationXtrpCalo mAssociator
Definition: JetTracksAssociatorAtCaloFace.h:33
Track.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:87
IdealMagneticFieldRecord.h
JetTracksAssociatorAtCaloFace::pGeo
edm::ESHandle< CaloGeometry > pGeo
Definition: JetTracksAssociatorAtCaloFace.h:34
funct::true
true
Definition: Factorize.h:173
edm::ParameterSet
Definition: ParameterSet.h:47
Event.h
HLT_FULL_cff.jetTracks
jetTracks
Definition: HLT_FULL_cff.py:50870
reco::JetExtendedAssociation::allJets
std::vector< reco::JetBaseRef > allJets(const Container &)
fill list of all jets associated with values. Return # of jets in the list
Definition: JetExtendedAssociation.cc:60
edm::EventSetup
Definition: EventSetup.h:58
get
#define get
edm::ESHandleBase::isValid
bool isValid() const
Definition: ESHandle.h:44
hcaldqm::fEvent
Definition: DQTask.h:32
JetTracksAssociatorAtCaloFace::firstRun
bool firstRun
Definition: JetTracksAssociatorAtCaloFace.h:35
eostools.move
def move(src, dest)
Definition: eostools.py:511
JetTracksAssociatorAtCaloFace::mExtrapolations
edm::EDGetTokenT< std::vector< reco::TrackExtrapolation > > mExtrapolations
Definition: JetTracksAssociatorAtCaloFace.h:32
TrackingComponentsRecord.h
JetTracksAssociatorAtCaloFace::mJets
edm::EDGetTokenT< edm::View< reco::Jet > > mJets
Definition: JetTracksAssociatorAtCaloFace.h:31
Exception
Definition: hltDiff.cc:245
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::Event
Definition: Event.h:73
JetTracksAssociatorAtCaloFace::dR_
double dR_
Definition: JetTracksAssociatorAtCaloFace.h:36
edm::InputTag
Definition: InputTag.h:15
JetTracksAssociationXtrpCalo::produce
void produce(Association *, JetRefs const &, std::vector< reco::TrackExtrapolation > const &, CaloGeometry const &, double dR)
Associates tracks to jets.
Definition: JetTracksAssociationXtrpCalo.cc:30
edm::RefToBaseProd
Definition: RefToBase.h:65