CMS 3D CMS Logo

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

Class to declare the algorithm to the framework. More...

#include <TTStubAlgorithm_official.h>

Inheritance diagram for ES_TTStubAlgorithm_official< T >:
edm::ESProducer edm::ESProxyFactoryProducer edm::eventsetup::DataProxyProvider

Public Member Functions

 ES_TTStubAlgorithm_official (const edm::ParameterSet &p)
 Constructor. More...
 
std::unique_ptr< TTStubAlgorithm< T > > produce (const TTStubAlgorithmRecord &record)
 Implement the producer. More...
 
 ~ES_TTStubAlgorithm_official () override
 Destructor. More...
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
ESProxyIndex const * getTokenIndices (unsigned int iIndex) const
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &) final
 
 ~ESProducer ()(false) override
 
- Public Member Functions inherited from edm::ESProxyFactoryProducer
 ESProxyFactoryProducer ()
 
void newInterval (const eventsetup::EventSetupRecordKey &iRecordType, const ValidityInterval &iInterval) override
 overrides DataProxyProvider method More...
 
 ~ESProxyFactoryProducer () noexcept(false) override
 
- Public Member Functions inherited from edm::eventsetup::DataProxyProvider
 DataProxyProvider ()
 
const ComponentDescriptiondescription () const
 
bool isUsingRecord (const EventSetupRecordKey &) const
 
const KeyedProxieskeyedProxies (const EventSetupRecordKey &iRecordKey) const
 
void resetProxies (const EventSetupRecordKey &iRecordType)
 
void resetProxiesIfTransient (const EventSetupRecordKey &iRecordType)
 
void setAppendToDataLabel (const edm::ParameterSet &)
 
void setDescription (const ComponentDescription &iDescription)
 
std::set< EventSetupRecordKeyusingRecords () const
 
virtual ~DataProxyProvider () noexcept(false)
 

Private Attributes

bool mPerformZMatching2S
 
bool mPerformZMatchingPS
 Z-matching. More...
 
std::vector< double > setBarrelCut
 Data members. More...
 
std::vector< double > setBarrelNTilt
 
std::vector< std::vector< double > > setRingCut
 
std::vector< std::vector< double > > setTiltedCut
 

Additional Inherited Members

- Public Types inherited from edm::eventsetup::DataProxyProvider
typedef std::vector< std::pair< DataKey, edm::propagate_const< std::shared_ptr< DataProxy > > > > KeyedProxies
 
typedef std::vector< EventSetupRecordKeyKeys
 
typedef std::map< EventSetupRecordKey, KeyedProxiesRecordProxies
 
- Static Public Member Functions inherited from edm::eventsetup::DataProxyProvider
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::ESProducer
 ESProducer (const ESProducer &)=delete
 
ESProducer const & operator= (const ESProducer &)=delete
 
template<typename T >
auto setWhatProduced (T *iThis, const es::Label &iLabel={})
 
template<typename T >
auto setWhatProduced (T *iThis, const char *iLabel)
 
template<typename T >
auto setWhatProduced (T *iThis, const std::string &iLabel)
 
template<typename T , typename TDecorator >
auto setWhatProduced (T *iThis, const TDecorator &iDec, const es::Label &iLabel={})
 
template<typename T , typename TReturn , typename TRecord >
auto setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const es::Label &iLabel={})
 
template<typename T , typename TReturn , typename TRecord , typename TArg >
ESConsumesCollectorT< TRecord > setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const TArg &iDec, const es::Label &iLabel={})
 
- Protected Member Functions inherited from edm::ESProxyFactoryProducer
template<class TFactory >
void registerFactory (std::unique_ptr< TFactory > iFactory, const std::string &iLabel=std::string())
 
virtual void registerFactoryWithKey (const eventsetup::EventSetupRecordKey &iRecord, std::unique_ptr< eventsetup::ProxyFactoryBase > iFactory, const std::string &iLabel=std::string())
 
void registerProxies (const eventsetup::EventSetupRecordKey &iRecord, KeyedProxies &aProxyList) override
 override DataProxyProvider method More...
 
- Protected Member Functions inherited from edm::eventsetup::DataProxyProvider
void eraseAll (const EventSetupRecordKey &iRecordKey)
 deletes all the Proxies in aStream More...
 
void invalidateProxies (const EventSetupRecordKey &iRecordKey)
 
template<class T >
void usingRecord ()
 
void usingRecordWithKey (const EventSetupRecordKey &)
 

Detailed Description

template<typename T>
class ES_TTStubAlgorithm_official< T >

Class to declare the algorithm to the framework.

Author
Nicola Pozzobon
Date
2013, Jul 18

Definition at line 114 of file TTStubAlgorithm_official.h.

Constructor & Destructor Documentation

template<typename T >
ES_TTStubAlgorithm_official< T >::ES_TTStubAlgorithm_official ( const edm::ParameterSet p)
inline

Constructor.

Definition at line 132 of file TTStubAlgorithm_official.h.

References edm::ParameterSet::getParameter().

133  {
134  mPerformZMatchingPS = p.getParameter< bool >("zMatchingPS");
135  mPerformZMatching2S = p.getParameter< bool >("zMatching2S");
136  setBarrelCut = p.getParameter< std::vector< double > >("BarrelCut");
137  setBarrelNTilt = p.getParameter< std::vector< double > >("NTiltedRings");
138 
139  std::vector< edm::ParameterSet > vPSet = p.getParameter< std::vector< edm::ParameterSet > >("EndcapCutSet");
140  std::vector< edm::ParameterSet > vPSet2 = p.getParameter< std::vector< edm::ParameterSet > >("TiltedBarrelCutSet");
141 
142  std::vector< edm::ParameterSet >::const_iterator iPSet;
143  for ( iPSet = vPSet.begin(); iPSet != vPSet.end(); iPSet++ )
144  {
145  setRingCut.push_back( iPSet->getParameter< std::vector< double > >("EndcapCut") );
146  }
147 
148  for ( iPSet = vPSet2.begin(); iPSet != vPSet2.end(); iPSet++ )
149  {
150  setTiltedCut.push_back( iPSet->getParameter< std::vector< double > >("TiltedCut") );
151  }
152 
153 
154  setWhatProduced( this );
155  }
T getParameter(std::string const &) const
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:124
std::vector< std::vector< double > > setRingCut
std::vector< std::vector< double > > setTiltedCut
std::vector< double > setBarrelCut
Data members.
template<typename T >
ES_TTStubAlgorithm_official< T >::~ES_TTStubAlgorithm_official ( )
inlineoverride

Destructor.

Definition at line 158 of file TTStubAlgorithm_official.h.

158 {}

Member Function Documentation

template<typename T >
std::unique_ptr< TTStubAlgorithm< T > > ES_TTStubAlgorithm_official< T >::produce ( const TTStubAlgorithmRecord record)
inline

Implement the producer.

Definition at line 161 of file TTStubAlgorithm_official.h.

References edm::eventsetup::DependentRecordImplementation< RecordT, ListT >::getRecord(), TTStubAlgorithm_official< T >::mPerformZMatching2S, TTStubAlgorithm_official< T >::mPerformZMatchingPS, and edm::ESHandle< T >::product().

162  {
164  record.getRecord< TrackerDigiGeometryRecord >().get( tGeomHandle );
165  const TrackerGeometry* const theTrackerGeom = tGeomHandle.product();
166  edm::ESHandle<TrackerTopology> tTopoHandle;
167  record.getRecord< TrackerTopologyRcd >().get(tTopoHandle);
168  const TrackerTopology* const theTrackerTopo = tTopoHandle.product();
169 
170  TTStubAlgorithm< T >* TTStubAlgo = new TTStubAlgorithm_official< T >( theTrackerGeom, theTrackerTopo,
173 
174  return std::unique_ptr< TTStubAlgorithm< T > >( TTStubAlgo );
175  }
Class for "official" algorithm to be used in TTStubBuilder.
Base class for any algorithm to be used in TTStubBuilder.
std::vector< std::vector< double > > setRingCut
std::vector< std::vector< double > > setTiltedCut
T const * product() const
Definition: ESHandle.h:86
std::vector< double > setBarrelCut
Data members.

Member Data Documentation

template<typename T >
bool ES_TTStubAlgorithm_official< T >::mPerformZMatching2S
private

Definition at line 128 of file TTStubAlgorithm_official.h.

template<typename T >
bool ES_TTStubAlgorithm_official< T >::mPerformZMatchingPS
private

Z-matching.

Definition at line 127 of file TTStubAlgorithm_official.h.

template<typename T >
std::vector< double > ES_TTStubAlgorithm_official< T >::setBarrelCut
private

Data members.

Windows

Definition at line 120 of file TTStubAlgorithm_official.h.

template<typename T >
std::vector< double > ES_TTStubAlgorithm_official< T >::setBarrelNTilt
private

Definition at line 124 of file TTStubAlgorithm_official.h.

template<typename T >
std::vector< std::vector< double > > ES_TTStubAlgorithm_official< T >::setRingCut
private

Definition at line 121 of file TTStubAlgorithm_official.h.

template<typename T >
std::vector< std::vector< double > > ES_TTStubAlgorithm_official< T >::setTiltedCut
private

Definition at line 122 of file TTStubAlgorithm_official.h.