CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
EcalSkim Class Reference

#include <EcalSkim.h>

Inheritance diagram for EcalSkim:
edm::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 EcalSkim (const edm::ParameterSet &)
 
 ~EcalSkim () 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

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

Private Attributes

edm::InputTag BarrelClusterCollection
 
edm::InputTag EndcapClusterCollection
 
double EnergyCutEB
 
double EnergyCutEE
 

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::ProducerBase
ProducesCollector producesCollector ()
 
- 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

Definition at line 44 of file EcalSkim.h.

Constructor & Destructor Documentation

EcalSkim::EcalSkim ( const edm::ParameterSet iConfig)
explicit

Definition at line 37 of file EcalSkim.cc.

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

37  {
38  BarrelClusterCollection = iConfig.getParameter<edm::InputTag>("barrelClusterCollection");
39  EndcapClusterCollection = iConfig.getParameter<edm::InputTag>("endcapClusterCollection");
40 
41  EnergyCutEB = iConfig.getUntrackedParameter<double>("energyCutEB");
42  EnergyCutEE = iConfig.getUntrackedParameter<double>("energyCutEE");
43 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
double EnergyCutEB
Definition: EcalSkim.h:54
edm::InputTag BarrelClusterCollection
Definition: EcalSkim.h:52
double EnergyCutEE
Definition: EcalSkim.h:55
edm::InputTag EndcapClusterCollection
Definition: EcalSkim.h:53
EcalSkim::~EcalSkim ( )
override

Definition at line 45 of file EcalSkim.cc.

45 {}

Member Function Documentation

bool EcalSkim::filter ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 47 of file EcalSkim.cc.

References cms::dd::accepted(), DEFINE_FWK_MODULE, edm::EventID::event(), edm::Event::getByLabel(), edm::EventBase::id(), edm::HandleBase::isValid(), and edm::Handle< T >::product().

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

47  {
48  int ievt = iEvent.id().event();
49 
52 
53  iEvent.getByLabel("cosmicSuperClusters", "CosmicBarrelSuperClusters", bccHandle);
54  if (!(bccHandle.isValid())) {
55  LogWarning("EcalSkim") << BarrelClusterCollection << " not available in event " << ievt;
56  return false;
57  } else {
58  // edm::LogVerbatim("") << "I took the right barrel collection" ;
59  }
60  iEvent.getByLabel("cosmicSuperClusters", "CosmicEndcapSuperClusters", eccHandle);
61 
62  if (!(eccHandle.isValid())) {
63  LogWarning("EcalSkim") << EndcapClusterCollection << " not available";
64  //return false;
65  } else {
66  //edm::LogVerbatim("") << "I took the right endcap collection " ;
67  }
68 
69  bool accepted = false;
70  bool acceptedEB = false;
71  bool acceptedEE = false;
72 
73  // barrel
74  const reco::SuperClusterCollection* clusterCollectionEB = bccHandle.product();
75  for (reco::SuperClusterCollection::const_iterator clus = clusterCollectionEB->begin();
76  clus != clusterCollectionEB->end();
77  ++clus) {
78  if (clus->energy() >= EnergyCutEB) {
79  acceptedEB = true;
80  break;
81  }
82  }
83 
84  // endcap
85  const reco::SuperClusterCollection* clusterCollectionEE = eccHandle.product();
86  for (reco::SuperClusterCollection::const_iterator clus = clusterCollectionEE->begin();
87  clus != clusterCollectionEE->end();
88  ++clus) {
89  if (clus->energy() >= EnergyCutEE) {
90  acceptedEE = true;
91  break;
92  }
93  }
94 
95  // if there is at least one high energy cluster in EB OR EE, accept
96  if (acceptedEB || acceptedEE)
97  accepted = true;
98 
99  return accepted;
100 }
EventNumber_t event() const
Definition: EventID.h:40
double EnergyCutEB
Definition: EcalSkim.h:54
edm::InputTag BarrelClusterCollection
Definition: EcalSkim.h:52
std::vector< SuperCluster > SuperClusterCollection
collection of SuperCluser objectr
double EnergyCutEE
Definition: EcalSkim.h:55
bool isValid() const
Definition: HandleBase.h:70
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:488
T const * product() const
Definition: Handle.h:69
bool accepted(std::vector< std::string_view > const &, std::string_view)
edm::InputTag EndcapClusterCollection
Definition: EcalSkim.h:53
edm::EventID id() const
Definition: EventBase.h:59

Member Data Documentation

edm::InputTag EcalSkim::BarrelClusterCollection
private

Definition at line 52 of file EcalSkim.h.

edm::InputTag EcalSkim::EndcapClusterCollection
private

Definition at line 53 of file EcalSkim.h.

double EcalSkim::EnergyCutEB
private

Definition at line 54 of file EcalSkim.h.

double EcalSkim::EnergyCutEE
private

Definition at line 55 of file EcalSkim.h.