CMS 3D CMS Logo

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

#include <DPGAnalysis/SiStripTools/plugins/SiStripDetWithSomething.cc>

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

Public Member Functions

 SiStripDetWithSomething (const edm::ParameterSet &)
 
 ~SiStripDetWithSomething () override
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
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)
 
 ~ProducerBase () noexcept(false) override
 
- 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
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
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)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

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

Private Attributes

edm::EDGetTokenT< T_digicollectionToken
 
std::vector< unsigned int > _wantedmod
 

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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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 SiStripDetWithSomething< T >

Description: template EDFilter to select events with selected modules with SiStripDigis or SiStripClusters

Implementation:

Definition at line 48 of file SiStripDetWithSomething.cc.

Constructor & Destructor Documentation

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

Definition at line 77 of file SiStripDetWithSomething.cc.

References SiStripDetWithSomething< T >::_wantedmod, and mod().

77  :
78  _digicollectionToken(consumes<T>(iConfig.getParameter<edm::InputTag>("collectionName"))),
79  _wantedmod(iConfig.getUntrackedParameter<std::vector<unsigned int> >("selectedModules"))
80 
81 {
82  //now do what ever initialization is needed
83 
84  sort(_wantedmod.begin(),_wantedmod.end());
85 
86  edm::LogInfo("SelectedModules") << "Selected module list";
87  for(std::vector<unsigned int>::const_iterator mod = _wantedmod.begin();mod!=_wantedmod.end();mod++) {
88  edm::LogVerbatim("SelectedModules") << *mod ;
89  }
90 
91 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< T > _digicollectionToken
std::vector< unsigned int > _wantedmod
T mod(const T &a, const T &b)
Definition: ecalDccMap.h:4
template<class T >
SiStripDetWithSomething< T >::~SiStripDetWithSomething ( )
override

Definition at line 95 of file SiStripDetWithSomething.cc.

96 {
97 
98  // do anything here that needs to be done at desctruction time
99  // (e.g. close files, deallocate resources etc.)
100 
101 }

Member Function Documentation

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

Reimplemented from edm::EDFilter.

Definition at line 137 of file SiStripDetWithSomething.cc.

138 {
139 }
template<class T >
void SiStripDetWithSomething< T >::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDFilter.

Definition at line 144 of file SiStripDetWithSomething.cc.

144  {
145 }
template<class T >
bool SiStripDetWithSomething< T >::filter ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 111 of file SiStripDetWithSomething.cc.

References SiStripDetWithSomething< T >::_digicollectionToken, SiStripDetWithSomething< T >::_wantedmod, edm::Event::getByToken(), and mod().

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().

112 {
113  using namespace edm;
114 
115  Handle<T> digis;
116  iEvent.getByToken(_digicollectionToken,digis);
117 
118  for(typename T::const_iterator it = digis->begin();it!=digis->end();it++) {
119 
120  for(std::vector<unsigned int>::const_iterator mod=_wantedmod.begin();
121  mod!=_wantedmod.end()&&it->detId()>=*mod;
122  mod++) {
123  if(*mod == it->detId()) {
124  edm::LogInfo("ModuleFound") << " module " << *mod << " found with "
125  << it->size() << " digis/clusters";
126  return true;
127  }
128  }
129  }
130 
131  return false;
132 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
edm::EDGetTokenT< T > _digicollectionToken
std::vector< unsigned int > _wantedmod
HLT enums.
T mod(const T &a, const T &b)
Definition: ecalDccMap.h:4

Member Data Documentation

template<class T >
edm::EDGetTokenT<T> SiStripDetWithSomething< T >::_digicollectionToken
private

Definition at line 60 of file SiStripDetWithSomething.cc.

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

template<class T >
std::vector<unsigned int> SiStripDetWithSomething< T >::_wantedmod
private