CMS 3D CMS Logo

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

#include <DPGAnalysis/SiStripTools/LargeEvents.cc>

Inheritance diagram for LargeEvents< T >:
edm::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 LargeEvents (const edm::ParameterSet &)
 
 ~LargeEvents () override
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDFilter () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
virtual ~ProducerBase () noexcept(false)
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void beginJob () override
 
void endJob () override
 
bool filter (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

int _absthr
 
edm::EDGetTokenT< T_collectionToken
 
int _modthr
 
edm::ESHandle< SiStripQuality_qualityHandle
 
std::string _qualityLabel
 
edm::ESWatcher< SiStripQualityRcd_qualityWatcher
 
bool _useQuality
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDFilter
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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

template<class T>
class LargeEvents< T >

Description: templated EDFilter to select events with large number of SiStripDigi or SiStripCluster

Implementation: <Notes on="" implementation>="">

Definition at line 54 of file LargeEvents.cc.

Constructor & Destructor Documentation

template<class T >
LargeEvents< T >::LargeEvents ( const edm::ParameterSet iConfig)
explicit

Definition at line 88 of file LargeEvents.cc.

88  :
89  _collectionToken(consumes<T>(iConfig.getParameter<edm::InputTag>("collectionName"))),
90  _absthr(iConfig.getUntrackedParameter<int>("absoluteThreshold")),
91  _modthr(iConfig.getUntrackedParameter<int>("moduleThreshold")),
92  _useQuality(iConfig.getUntrackedParameter<bool>("useQuality",false)),
93  _qualityLabel(iConfig.getUntrackedParameter<std::string>("qualityLabel",""))
94 {
95  //now do what ever initialization is needed
96 
97 
98 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
std::string _qualityLabel
Definition: LargeEvents.cc:70
edm::EDGetTokenT< T > _collectionToken
Definition: LargeEvents.cc:66
bool _useQuality
Definition: LargeEvents.cc:69
template<class T >
LargeEvents< T >::~LargeEvents ( )
override

Definition at line 101 of file LargeEvents.cc.

102 {
103 
104  // do anything here that needs to be done at desctruction time
105  // (e.g. close files, deallocate resources etc.)
106 
107 }

Member Function Documentation

template<class T >
void LargeEvents< T >::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDFilter.

Definition at line 153 of file LargeEvents.cc.

154 {
155 }
template<class T >
void LargeEvents< T >::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDFilter.

Definition at line 160 of file LargeEvents.cc.

160  {
161 }
template<class T >
bool LargeEvents< T >::filter ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 117 of file LargeEvents.cc.

References LargeEvents< T >::_absthr, LargeEvents< T >::_collectionToken, LargeEvents< T >::_modthr, LargeEvents< T >::_qualityHandle, LargeEvents< T >::_qualityLabel, LargeEvents< T >::_qualityWatcher, LargeEvents< T >::_useQuality, edm::ESWatcher< T >::check(), edm::EventSetup::get(), edm::Event::getByToken(), SiStripQuality::IsModuleBad(), and LogDebug.

Referenced by Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::filter(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::find(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::setDataAccessor(), and Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::switchCenterView().

118 {
119  using namespace edm;
120 
121  if( _useQuality) {
122  if(_qualityWatcher.check(iSetup)) {
124  LogDebug("SiStripQualityUpdated") << "SiStripQuality has changed and it will be updated";
125  }
126  }
127 
128  Handle<T> digis;
129  iEvent.getByToken(_collectionToken,digis);
130 
131 
132  int ndigitot = 0;
133  for(typename T::const_iterator it = digis->begin();it!=digis->end();it++) {
134 
135  if(!_useQuality || !_qualityHandle->IsModuleBad(it->detId()) ) {
136  if(_modthr < 0 || int(it->size()) < _modthr ) {
137  ndigitot += it->size();
138  }
139  }
140  }
141 
142  if(ndigitot > _absthr) {
143  LogDebug("LargeEventSelected") << "event with " << ndigitot << " digi/cluster selected";
144  return true;
145  }
146 
147  return false;
148 }
#define LogDebug(id)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
edm::ESWatcher< SiStripQualityRcd > _qualityWatcher
Definition: LargeEvents.cc:72
edm::ESHandle< SiStripQuality > _qualityHandle
Definition: LargeEvents.cc:71
bool IsModuleBad(const uint32_t &detid) const
const T & get() const
Definition: EventSetup.h:58
std::string _qualityLabel
Definition: LargeEvents.cc:70
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:57
HLT enums.
edm::EDGetTokenT< T > _collectionToken
Definition: LargeEvents.cc:66
bool _useQuality
Definition: LargeEvents.cc:69

Member Data Documentation

template<class T >
int LargeEvents< T >::_absthr
private

Definition at line 67 of file LargeEvents.cc.

Referenced by LargeEvents< T >::filter().

template<class T >
edm::EDGetTokenT<T> LargeEvents< T >::_collectionToken
private

Definition at line 66 of file LargeEvents.cc.

Referenced by LargeEvents< T >::filter().

template<class T >
int LargeEvents< T >::_modthr
private

Definition at line 68 of file LargeEvents.cc.

Referenced by LargeEvents< T >::filter().

template<class T >
edm::ESHandle<SiStripQuality> LargeEvents< T >::_qualityHandle
private

Definition at line 71 of file LargeEvents.cc.

Referenced by LargeEvents< T >::filter().

template<class T >
std::string LargeEvents< T >::_qualityLabel
private

Definition at line 70 of file LargeEvents.cc.

Referenced by LargeEvents< T >::filter().

template<class T >
edm::ESWatcher<SiStripQualityRcd> LargeEvents< T >::_qualityWatcher
private

Definition at line 72 of file LargeEvents.cc.

Referenced by LargeEvents< T >::filter().

template<class T >
bool LargeEvents< T >::_useQuality
private

Definition at line 69 of file LargeEvents.cc.

Referenced by LargeEvents< T >::filter().