CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
VIDNestedWPBitmapProducer< T > Class Template Reference

#include <PhysicsTools/NanoAOD/plugins/VIDNestedWPBitmapProducer.cc>

Inheritance diagram for VIDNestedWPBitmapProducer< T >:
edm::stream::EDProducer<>

Public Member Functions

 VIDNestedWPBitmapProducer (const edm::ParameterSet &iConfig)
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

void initNCuts (unsigned int)
 
void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

bool isInit_
 
unsigned int nBits
 
unsigned int nCuts = 0
 
unsigned int nWP
 
std::vector< unsigned int > res_
 
edm::EDGetTokenT< edm::View< T > > src_
 
std::vector< edm::EDGetTokenT< edm::ValueMap< unsigned int > > > src_bitmaps_
 
std::vector< edm::EDGetTokenT< edm::ValueMap< vid::CutFlowResult > > > src_cutflows_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

template<typename T>
class VIDNestedWPBitmapProducer< T >

Description: [one line class summary]

Implementation: [Notes on implementation]

Definition at line 42 of file VIDNestedWPBitmapProducer.cc.

Constructor & Destructor Documentation

template<typename T >
VIDNestedWPBitmapProducer< T >::VIDNestedWPBitmapProducer ( const edm::ParameterSet iConfig)
inlineexplicit

Definition at line 44 of file VIDNestedWPBitmapProducer.cc.

References VIDNestedWPBitmapProducer< T >::fillDescriptions(), edm::ParameterSet::getParameter(), VIDNestedWPBitmapProducer< T >::nWP, VIDNestedWPBitmapProducer< T >::produce(), VIDNestedWPBitmapProducer< T >::src_bitmaps_, VIDNestedWPBitmapProducer< T >::src_cutflows_, and AlCaHLTBitMon_QueryRunRegistry::string.

45  : src_(consumes<edm::View<T>>(iConfig.getParameter<edm::InputTag>("src"))), isInit_(false) {
46  auto const& vwp = iConfig.getParameter<std::vector<std::string>>("WorkingPoints");
47  for (auto const& wp : vwp) {
48  src_bitmaps_.push_back(consumes<edm::ValueMap<unsigned int>>(edm::InputTag(wp + std::string("Bitmap"))));
50  }
51  nWP = src_bitmaps_.size();
52  produces<edm::ValueMap<int>>();
53  }
T getParameter(std::string const &) const
std::vector< edm::EDGetTokenT< edm::ValueMap< vid::CutFlowResult > > > src_cutflows_
edm::EDGetTokenT< edm::View< T > > src_
std::vector< edm::EDGetTokenT< edm::ValueMap< unsigned int > > > src_bitmaps_

Member Function Documentation

template<typename T >
void VIDNestedWPBitmapProducer< T >::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 135 of file VIDNestedWPBitmapProducer.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), timingPdfMaker::modname, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by VIDNestedWPBitmapProducer< T >::VIDNestedWPBitmapProducer().

135  {
137  desc.add<edm::InputTag>("src")->setComment("input physics object collection");
138  desc.add<std::vector<std::string>>("WorkingPoints")->setComment("working points to be saved in the bitmask");
140  if (typeid(T) == typeid(pat::Electron))
141  modname += "Ele";
142  else if (typeid(T) == typeid(pat::Photon))
143  modname += "Pho";
144  modname += "VIDNestedWPBitmapProducer";
145  descriptions.add(modname, desc);
146 }
Analysis-level Photon class.
Definition: Photon.h:46
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Analysis-level electron class.
Definition: Electron.h:51
void add(std::string const &label, ParameterSetDescription const &psetDescription)
long double T
template<typename T >
void VIDNestedWPBitmapProducer< T >::initNCuts ( unsigned int  n)
private
template<typename T >
void VIDNestedWPBitmapProducer< T >::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 76 of file VIDNestedWPBitmapProducer.cc.

References Exception, trigObjTnPSource_cfi::filler, edm::Event::getByToken(), mps_fire::i, VIDNestedWPBitmapProducer< T >::initNCuts(), VIDNestedWPBitmapProducer< T >::isInit_, dqmiolumiharvest::j, dqmdumpme::k, eostools::move(), VIDNestedWPBitmapProducer< T >::nBits, VIDNestedWPBitmapProducer< T >::nCuts, VIDNestedWPBitmapProducer< T >::nWP, getGTfromDQMFile::obj, MillePedeFileConverter_cfg::out, edm::Event::put(), VIDNestedWPBitmapProducer< T >::res_, TrackRefitter_38T_cff::src, VIDNestedWPBitmapProducer< T >::src_, VIDNestedWPBitmapProducer< T >::src_bitmaps_, and VIDNestedWPBitmapProducer< T >::src_cutflows_.

Referenced by VIDNestedWPBitmapProducer< T >::VIDNestedWPBitmapProducer().

76  {
78  iEvent.getByToken(src_, src);
79  std::vector<edm::Handle<edm::ValueMap<unsigned int>>> src_bitmaps(nWP);
80  for (unsigned int i = 0; i < nWP; i++)
81  iEvent.getByToken(src_bitmaps_[i], src_bitmaps[i]);
82  std::vector<edm::Handle<edm::ValueMap<vid::CutFlowResult>>> src_cutflows(nWP);
83  for (unsigned int i = 0; i < nWP; i++)
84  iEvent.getByToken(src_cutflows_[i], src_cutflows[i]);
85 
86  std::vector<unsigned int> res;
87 
88  for (auto const& obj : src->ptrs()) {
89  for (unsigned int j = 0; j < nWP; j++) {
90  auto cutflow = (*(src_cutflows[j]))[obj];
91  if (!isInit_)
92  initNCuts(cutflow.cutFlowSize());
93  if (cutflow.cutFlowSize() != nCuts)
94  throw cms::Exception("Configuration", "Trying to compress VID bitmaps for cutflows of different size");
95  auto bitmap = (*(src_bitmaps[j]))[obj];
96  for (unsigned int k = 0; k < nCuts; k++) {
97  if (j == 0)
98  res_[k] = 0;
99  if (bitmap >> k & 1) {
100  if (res_[k] != j)
101  throw cms::Exception(
102  "Configuration",
103  "Trying to compress VID bitmaps which are not nested in the correct order for all cuts");
104  res_[k]++;
105  }
106  }
107  }
108 
109  int out = 0;
110  for (unsigned int k = 0; k < nCuts; k++)
111  out |= (res_[k] << (nBits * k));
112  res.push_back(out);
113  }
114 
115  auto resV = std::make_unique<edm::ValueMap<int>>();
117  filler.insert(src, res.begin(), res.end());
118  filler.fill();
119 
120  iEvent.put(std::move(resV));
121 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
std::vector< edm::EDGetTokenT< edm::ValueMap< vid::CutFlowResult > > > src_cutflows_
Definition: Electron.h:6
std::vector< unsigned int > res_
edm::EDGetTokenT< edm::View< T > > src_
std::vector< edm::EDGetTokenT< edm::ValueMap< unsigned int > > > src_bitmaps_
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

template<typename T >
bool VIDNestedWPBitmapProducer< T >::isInit_
private
template<typename T >
unsigned int VIDNestedWPBitmapProducer< T >::nBits
private
template<typename T >
unsigned int VIDNestedWPBitmapProducer< T >::nCuts = 0
private
template<typename T >
unsigned int VIDNestedWPBitmapProducer< T >::nWP
private
template<typename T >
std::vector<unsigned int> VIDNestedWPBitmapProducer< T >::res_
private
template<typename T >
edm::EDGetTokenT<edm::View<T> > VIDNestedWPBitmapProducer< T >::src_
private
template<typename T >
std::vector<edm::EDGetTokenT<edm::ValueMap<unsigned int> > > VIDNestedWPBitmapProducer< T >::src_bitmaps_
private
template<typename T >
std::vector<edm::EDGetTokenT<edm::ValueMap<vid::CutFlowResult> > > VIDNestedWPBitmapProducer< T >::src_cutflows_
private