CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
MLPFProducer Class Reference
Inheritance diagram for MLPFProducer:
edm::stream::EDProducer< edm::GlobalCache< ONNXRuntime > >

Public Member Functions

 MLPFProducer (const edm::ParameterSet &, const ONNXRuntime *)
 
void produce (edm::Event &event, const edm::EventSetup &setup) override
 
- Public Member Functions inherited from edm::stream::EDProducer< edm::GlobalCache< ONNXRuntime > >
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
static void globalEndJob (const ONNXRuntime *)
 
static std::unique_ptr
< ONNXRuntime
initializeGlobalCache (const edm::ParameterSet &)
 

Private Attributes

const edm::EDGetTokenT
< reco::PFBlockCollection
inputTagBlocks_
 
const edm::EDPutTokenT
< reco::PFCandidateCollection
pfCandidatesPutToken_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer< edm::GlobalCache< ONNXRuntime > >
using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Definition at line 17 of file MLPFProducer.cc.

Constructor & Destructor Documentation

MLPFProducer::MLPFProducer ( const edm::ParameterSet cfg,
const ONNXRuntime cache 
)
explicit

Definition at line 33 of file MLPFProducer.cc.

References edm::ParameterSet::getParameter(), and inputTagBlocks_.

34  : pfCandidatesPutToken_{produces<reco::PFCandidateCollection>()},
35  inputTagBlocks_(consumes<reco::PFBlockCollection>(cfg.getParameter<edm::InputTag>("src"))) {}
const edm::EDPutTokenT< reco::PFCandidateCollection > pfCandidatesPutToken_
Definition: MLPFProducer.cc:29
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
const edm::EDGetTokenT< reco::PFBlockCollection > inputTagBlocks_
Definition: MLPFProducer.cc:30

Member Function Documentation

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

Definition at line 168 of file MLPFProducer.cc.

References edm::ParameterSetDescription::add(), edm::ConfigurationDescriptions::addWithDefaultLabel(), submitPVResolutionJobs::desc, and HLT_FULL_cff::InputTag.

168  {
170  desc.add<edm::InputTag>("src", edm::InputTag("particleFlowBlock"));
171  desc.add<edm::FileInPath>(
172  "model_path",
174  "RecoParticleFlow/PFProducer/data/mlpf/"
175  "mlpf_2021_11_16__no_einsum__all_data_cms-best-of-asha-scikit_20211026_042043_178263.workergpu010.onnx"));
176  descriptions.addWithDefaultLabel(desc);
177 }
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void MLPFProducer::globalEndJob ( const ONNXRuntime cache)
static

Definition at line 166 of file MLPFProducer.cc.

166 {}
std::unique_ptr< ONNXRuntime > MLPFProducer::initializeGlobalCache ( const edm::ParameterSet params)
static

Definition at line 162 of file MLPFProducer.cc.

References contentValuesFiles::fullPath, and edm::ParameterSet::getParameter().

162  {
163  return std::make_unique<ONNXRuntime>(params.getParameter<edm::FileInPath>("model_path").fullPath());
164 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
void MLPFProducer::produce ( edm::Event event,
const edm::EventSetup setup 
)
override

Definition at line 37 of file MLPFProducer.cc.

References reco::mlpf::argMax(), cms::cuda::assert(), gather_cfg::blocks, gather_cfg::cout, reco::mlpf::getElementProperties(), reco::mlpf::getPFElements(), reco::mlpf::IDX_CHARGE, reco::mlpf::IDX_CLASS, reco::mlpf::IDX_COS_PHI, reco::mlpf::IDX_ENERGY, reco::mlpf::IDX_ETA, reco::mlpf::IDX_PT, reco::mlpf::IDX_SIN_PHI, PixelMapPlotter::inputs, inputTagBlocks_, CommonMethods::isnan(), reco::mlpf::LSH_BIN_SIZE, reco::mlpf::makeCandidate(), SiStripPI::max, mlpf_cff::mlpf, reco::mlpf::normalize(), reco::mlpf::NUM_ELEMENT_FEATURES, reco::mlpf::NUM_MAX_ELEMENTS_BATCH, reco::mlpf::NUM_OUTPUT_FEATURES, convertSQLitetoXML_cfg::output, reco::mlpf::pdgid_encoding, pfCandidatesPutToken_, reco::PFBlockElement::PS1, reco::PFBlockElement::PS2, reco::mlpf::setCandidateRefs(), reco::PFBlockElement::TRACK, and reco::PFBlockElement::type().

37  {
38  using namespace reco::mlpf;
39 
40  const auto& blocks = event.get(inputTagBlocks_);
41  const auto& all_elements = getPFElements(blocks);
42 
43  std::vector<const reco::PFBlockElement*> selected_elements;
44  unsigned int num_elements_total = 0;
45  for (const auto* pelem : all_elements) {
46  if (pelem->type() == reco::PFBlockElement::PS1 || pelem->type() == reco::PFBlockElement::PS2) {
47  continue;
48  }
49  num_elements_total += 1;
50  selected_elements.push_back(pelem);
51  }
52  const auto tensor_size = LSH_BIN_SIZE * std::max(2u, (num_elements_total / LSH_BIN_SIZE + 1));
53 
54 #ifdef MLPF_DEBUG
55  assert(num_elements_total < NUM_MAX_ELEMENTS_BATCH);
56  //tensor size must be a multiple of the bin size and larger than the number of elements
57  assert(tensor_size <= NUM_MAX_ELEMENTS_BATCH);
58  assert(tensor_size % LSH_BIN_SIZE == 0);
59 #endif
60 
61 #ifdef MLPF_DEBUG
62  std::cout << "tensor_size=" << tensor_size << std::endl;
63 #endif
64 
65  //Fill the input tensor (batch, elems, features) = (1, tensor_size, NUM_ELEMENT_FEATURES)
66  std::vector<std::vector<float>> inputs(1, std::vector<float>(NUM_ELEMENT_FEATURES * tensor_size, 0.0));
67  unsigned int ielem = 0;
68  for (const auto* pelem : selected_elements) {
69  if (ielem > tensor_size) {
70  continue;
71  }
72 
73  const auto& elem = *pelem;
74 
75  //prepare the input array from the PFElement
76  const auto& props = getElementProperties(elem);
77 
78  //copy features to the input array
79  for (unsigned int iprop = 0; iprop < NUM_ELEMENT_FEATURES; iprop++) {
80  inputs[0][ielem * NUM_ELEMENT_FEATURES + iprop] = normalize(props[iprop]);
81  }
82  ielem += 1;
83  }
84 
85  //run the GNN inference, given the inputs and the output.
86  const auto& outputs = globalCache()->run({"x:0"}, inputs, {{1, tensor_size, NUM_ELEMENT_FEATURES}});
87  const auto& output = outputs[0];
88 #ifdef MLPF_DEBUG
89  assert(output.size() == tensor_size * NUM_OUTPUT_FEATURES);
90 #endif
91 
92  std::vector<reco::PFCandidate> pOutputCandidateCollection;
93  for (size_t ielem = 0; ielem < num_elements_total; ielem++) {
94  std::vector<float> pred_id_probas(IDX_CLASS + 1, 0.0);
95  const reco::PFBlockElement* elem = selected_elements[ielem];
96 
97  for (unsigned int idx_id = 0; idx_id <= IDX_CLASS; idx_id++) {
98  auto pred_proba = output[ielem * NUM_OUTPUT_FEATURES + idx_id];
99 #ifdef MLPF_DEBUG
100  assert(!std::isnan(pred_proba));
101 #endif
102  pred_id_probas[idx_id] = pred_proba;
103  }
104 
105  auto imax = argMax(pred_id_probas);
106 
107  //get the most probable class PDGID
108  int pred_pid = pdgid_encoding[imax];
109 
110 #ifdef MLPF_DEBUG
111  std::cout << "ielem=" << ielem << " inputs:";
112  for (unsigned int iprop = 0; iprop < NUM_ELEMENT_FEATURES; iprop++) {
113  std::cout << iprop << "=" << inputs[0][ielem * NUM_ELEMENT_FEATURES + iprop] << " ";
114  }
115  std::cout << std::endl;
116  std::cout << "ielem=" << ielem << " pred: pid=" << pred_pid << std::endl;
117 #endif
118 
119  //a particle was predicted for this PFElement, otherwise it was a spectator
120  if (pred_pid != 0) {
121  //muons and charged hadrons should only come from tracks, otherwise we won't have track references to pass downstream
122  if (((pred_pid == 13) || (pred_pid == 211)) && elem->type() != reco::PFBlockElement::TRACK) {
123  pred_pid = 130;
124  }
125 
126  if (elem->type() == reco::PFBlockElement::TRACK) {
127  const auto* eltTrack = dynamic_cast<const reco::PFBlockElementTrack*>(elem);
128 
129  //a track with no muon ref should not produce a muon candidate, instead we interpret it as a charged hadron
130  if (pred_pid == 13 && eltTrack->muonRef().isNull()) {
131  pred_pid = 211;
132  }
133 
134  //tracks from displaced vertices need reference debugging downstream as well, so we just treat them as neutrals for the moment
135  if ((pred_pid == 211) && (eltTrack->isLinkedToDisplacedVertex())) {
136  pred_pid = 130;
137  }
138  }
139 
140  //get the predicted momentum components
141  float pred_pt = output[ielem * NUM_OUTPUT_FEATURES + IDX_PT];
142  float pred_eta = output[ielem * NUM_OUTPUT_FEATURES + IDX_ETA];
143  float pred_sin_phi = output[ielem * NUM_OUTPUT_FEATURES + IDX_SIN_PHI];
144  float pred_cos_phi = output[ielem * NUM_OUTPUT_FEATURES + IDX_COS_PHI];
145  float pred_e = output[ielem * NUM_OUTPUT_FEATURES + IDX_ENERGY];
146  float pred_charge = output[ielem * NUM_OUTPUT_FEATURES + IDX_CHARGE];
147 
148  auto cand = makeCandidate(pred_pid, pred_charge, pred_pt, pred_eta, pred_sin_phi, pred_cos_phi, pred_e);
149  setCandidateRefs(cand, selected_elements, ielem);
150  pOutputCandidateCollection.push_back(cand);
151 
152 #ifdef MLPF_DEBUG
153  std::cout << "ielem=" << ielem << " cand: pid=" << cand.pdgId() << " E=" << cand.energy() << " pt=" << cand.pt()
154  << " eta=" << cand.eta() << " phi=" << cand.phi() << " charge=" << cand.charge() << std::endl;
155 #endif
156  }
157  } //loop over PFElements
158 
159  event.emplace(pfCandidatesPutToken_, pOutputCandidateCollection);
160 }
Abstract base class for a PFBlock element (track, cluster...)
static constexpr unsigned int IDX_ETA
Definition: MLPFModel.h:33
std::array< float, NUM_ELEMENT_FEATURES > getElementProperties(const reco::PFBlockElement &orig)
Definition: MLPFModel.cc:17
int argMax(std::vector< float > const &vec)
Definition: MLPFModel.cc:216
static constexpr unsigned int NUM_ELEMENT_FEATURES
Definition: MLPFModel.h:10
Type type() const
static constexpr unsigned int IDX_PT
Definition: MLPFModel.h:32
tuple blocks
Definition: gather_cfg.py:90
static constexpr unsigned int IDX_ENERGY
Definition: MLPFModel.h:36
assert(be >=bs)
const std::vector< const reco::PFBlockElement * > getPFElements(const reco::PFBlockCollection &blocks)
Definition: MLPFModel.cc:263
static constexpr unsigned int NUM_OUTPUT_FEATURES
Definition: MLPFModel.h:11
const edm::EDPutTokenT< reco::PFCandidateCollection > pfCandidatesPutToken_
Definition: MLPFProducer.cc:29
static constexpr unsigned int IDX_CHARGE
Definition: MLPFModel.h:30
reco::PFCandidate makeCandidate(int pred_pid, int pred_charge, float pred_pt, float pred_eta, float pred_sin_phi, float pred_cos_phi, float pred_e)
Definition: MLPFModel.cc:220
static constexpr unsigned int IDX_CLASS
Definition: MLPFModel.h:28
static constexpr unsigned int IDX_SIN_PHI
Definition: MLPFModel.h:34
tuple mlpf
Definition: mlpf_cff.py:4
void setCandidateRefs(reco::PFCandidate &cand, const std::vector< const reco::PFBlockElement * > elems, size_t ielem_originator)
Definition: MLPFModel.cc:284
float normalize(float in)
Definition: MLPFModel.cc:207
const edm::EDGetTokenT< reco::PFBlockCollection > inputTagBlocks_
Definition: MLPFProducer.cc:30
static constexpr unsigned int IDX_COS_PHI
Definition: MLPFModel.h:35
tuple cout
Definition: gather_cfg.py:144
static const std::vector< int > pdgid_encoding
Definition: MLPFModel.h:43
static constexpr int LSH_BIN_SIZE
Definition: MLPFModel.h:14
static constexpr int NUM_MAX_ELEMENTS_BATCH
Definition: MLPFModel.h:15

Member Data Documentation

const edm::EDGetTokenT<reco::PFBlockCollection> MLPFProducer::inputTagBlocks_
private

Definition at line 30 of file MLPFProducer.cc.

Referenced by MLPFProducer(), and produce().

const edm::EDPutTokenT<reco::PFCandidateCollection> MLPFProducer::pfCandidatesPutToken_
private

Definition at line 29 of file MLPFProducer.cc.

Referenced by produce().