CMS 3D CMS Logo

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

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

#include <TTStubAlgorithm_cbc3.h>

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

Public Member Functions

 ES_TTStubAlgorithm_cbc3 (const edm::ParameterSet &p)
 Constructor. More...
 
std::shared_ptr< TTStubAlgorithm< T > > produce (const TTStubAlgorithmRecord &record)
 Implement the producer. More...
 
virtual ~ES_TTStubAlgorithm_cbc3 ()
 Destructor. More...
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
virtual ~ESProducer ()(false)
 
- Public Member Functions inherited from edm::ESProxyFactoryProducer
 ESProxyFactoryProducer ()
 
virtual void newInterval (const eventsetup::EventSetupRecordKey &iRecordType, const ValidityInterval &iInterval)
 overrides DataProxyProvider method More...
 
virtual ~ESProxyFactoryProducer () noexcept(false)
 
- 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

std::shared_ptr< TTStubAlgorithm< T > > _theAlgo
 Data members. More...
 
bool mPerformZMatching2S
 Z-matching. More...
 

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
template<typename T >
void setWhatProduced (T *iThis, const es::Label &iLabel=es::Label())
 
template<typename T >
void setWhatProduced (T *iThis, const char *iLabel)
 
template<typename T >
void setWhatProduced (T *iThis, const std::string &iLabel)
 
template<typename T , typename TDecorator >
void setWhatProduced (T *iThis, const TDecorator &iDec, const es::Label &iLabel=es::Label())
 
template<typename T , typename TReturn , typename TRecord >
void setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const es::Label &iLabel=es::Label())
 
template<typename T , typename TReturn , typename TRecord , typename TArg >
void setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const TArg &iDec, const es::Label &iLabel=es::Label())
 
- 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())
 
virtual void registerProxies (const eventsetup::EventSetupRecordKey &iRecord, KeyedProxies &aProxyList)
 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_cbc3< T >

Class to declare the algorithm to the framework.

Author
Nicola Pozzobon
Date
2013, Jul 18

Definition at line 80 of file TTStubAlgorithm_cbc3.h.

Constructor & Destructor Documentation

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

Constructor.

Definition at line 91 of file TTStubAlgorithm_cbc3.h.

References edm::ParameterSet::getParameter().

92  {
93  mPerformZMatching2S = p.getParameter< bool >("zMatching2S");
94  setWhatProduced( this );
95  }
T getParameter(std::string const &) const
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
bool mPerformZMatching2S
Z-matching.
template<typename T >
virtual ES_TTStubAlgorithm_cbc3< T >::~ES_TTStubAlgorithm_cbc3 ( )
inlinevirtual

Destructor.

Definition at line 98 of file TTStubAlgorithm_cbc3.h.

98 {}

Member Function Documentation

template<typename T >
std::shared_ptr< TTStubAlgorithm< T > > ES_TTStubAlgorithm_cbc3< T >::produce ( const TTStubAlgorithmRecord record)
inline

Implement the producer.

Definition at line 101 of file TTStubAlgorithm_cbc3.h.

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

102  {
104  record.getRecord< TrackerDigiGeometryRecord >().get( tGeomHandle );
105  const TrackerGeometry* const theTrackerGeom = tGeomHandle.product();
106  edm::ESHandle<TrackerTopology> tTopoHandle;
107  record.getRecord<TrackerTopologyRcd>().get(tTopoHandle);
108  const TrackerTopology* const theTrackerTopo = tTopoHandle.product();
109 
110  TTStubAlgorithm< T >* TTStubAlgo = new TTStubAlgorithm_cbc3< T >( theTrackerGeom, theTrackerTopo, mPerformZMatching2S );
111  _theAlgo = std::shared_ptr< TTStubAlgorithm< T > >( TTStubAlgo );
112  return _theAlgo;
113  }
Base class for any algorithm to be used in TTStubBuilder.
std::shared_ptr< TTStubAlgorithm< T > > _theAlgo
Data members.
bool mPerformZMatching2S
Z-matching.
Class for "cbc3" algorithm to be used in TTStubBuilder.
T const * product() const
Definition: ESHandle.h:86

Member Data Documentation

template<typename T >
std::shared_ptr< TTStubAlgorithm< T > > ES_TTStubAlgorithm_cbc3< T >::_theAlgo
private

Data members.

Definition at line 84 of file TTStubAlgorithm_cbc3.h.

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

Z-matching.

Definition at line 87 of file TTStubAlgorithm_cbc3.h.