CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Member Functions | Public Attributes
edm::DetSet< T > Struct Template Reference

#include <DetSet.h>

Public Types

typedef std::vector< Tcollection_type
 
typedef collection_type::const_iterator const_iterator
 
typedef collection_type::const_reference const_reference
 
typedef collection_type::iterator iterator
 
typedef collection_type::reference reference
 
typedef collection_type::size_type size_type
 
typedef collection_type::value_type value_type
 

Public Member Functions

iterator begin ()
 
const_iterator begin () const
 
void clear ()
 
det_id_type detId () const
 
 DetSet ()
 default constructor More...
 
 DetSet (det_id_type i)
 constructor by detector identifier More...
 
template<class... Args>
decltype(auto) emplace_back (Args &&...args)
 
bool empty () const
 
iterator end ()
 
const_iterator end () const
 
reference operator[] (size_type i)
 
const_reference operator[] (size_type i) const
 
void push_back (const T &t)
 
void reserve (size_t s)
 
size_type size () const
 
void swap (DetSet< T > &other)
 

Static Public Member Functions

static short Class_Version ()
 

Public Attributes

collection_type data
 
det_id_type id
 

Detailed Description

template<class T>
struct edm::DetSet< T >

Definition at line 24 of file DetSet.h.

Member Typedef Documentation

template<class T>
typedef std::vector<T> edm::DetSet< T >::collection_type

Definition at line 26 of file DetSet.h.

template<class T>
typedef collection_type::const_iterator edm::DetSet< T >::const_iterator

Definition at line 33 of file DetSet.h.

template<class T>
typedef collection_type::const_reference edm::DetSet< T >::const_reference

Definition at line 31 of file DetSet.h.

template<class T>
typedef collection_type::iterator edm::DetSet< T >::iterator

Definition at line 32 of file DetSet.h.

template<class T>
typedef collection_type::reference edm::DetSet< T >::reference

Definition at line 30 of file DetSet.h.

template<class T>
typedef collection_type::size_type edm::DetSet< T >::size_type

Definition at line 34 of file DetSet.h.

template<class T>
typedef collection_type::value_type edm::DetSet< T >::value_type

Definition at line 29 of file DetSet.h.

Constructor & Destructor Documentation

template<class T>
edm::DetSet< T >::DetSet ( )
inline

default constructor

Definition at line 37 of file DetSet.h.

Referenced by edm::DetSet< StripDigiSimLink >::DetSet().

37 : id(0), data() { }
collection_type data
Definition: DetSet.h:80
det_id_type id
Definition: DetSet.h:79
template<class T>
edm::DetSet< T >::DetSet ( det_id_type  i)
inlineexplicit

constructor by detector identifier

Definition at line 39 of file DetSet.h.

39 : id(i), data() { }
collection_type data
Definition: DetSet.h:80
det_id_type id
Definition: DetSet.h:79

Member Function Documentation

template<class T>
iterator edm::DetSet< T >::begin ( void  )
inline
template<class T>
const_iterator edm::DetSet< T >::begin ( void  ) const
inline

Definition at line 61 of file DetSet.h.

61 { return data.begin(); }
collection_type data
Definition: DetSet.h:80
template<class T>
static short edm::DetSet< T >::Class_Version ( )
inlinestatic

Definition at line 77 of file DetSet.h.

92 {
template<class T>
void edm::DetSet< T >::clear ( void  )
inline
template<class T>
det_id_type edm::DetSet< T >::detId ( ) const
inline
template<class T>
template<class... Args>
decltype(auto) edm::DetSet< T >::emplace_back ( Args &&...  args)
inline

Definition at line 70 of file DetSet.h.

Referenced by CTPPSDiamondRecHitProducerAlgorithm::build(), and SiStripDigitizerAlgorithm::digitize().

70 { return data.emplace_back(std::forward<Args>(args)...); }
collection_type data
Definition: DetSet.h:80
template<class T>
bool edm::DetSet< T >::empty ( ) const
inline
template<class T>
iterator edm::DetSet< T >::end ( void  )
inline
template<class T>
const_iterator edm::DetSet< T >::end ( void  ) const
inline

Definition at line 62 of file DetSet.h.

Referenced by Types.LuminosityBlockRange::cppID(), and Types.EventRange::cppID().

62 { return data.end(); }
collection_type data
Definition: DetSet.h:80
template<class T>
reference edm::DetSet< T >::operator[] ( size_type  i)
inline

Definition at line 65 of file DetSet.h.

65 { return data[ i ]; }
collection_type data
Definition: DetSet.h:80
template<class T>
const_reference edm::DetSet< T >::operator[] ( size_type  i) const
inline

Definition at line 66 of file DetSet.h.

66 { return data[ i ]; }
collection_type data
Definition: DetSet.h:80
template<class T>
void edm::DetSet< T >::push_back ( const T t)
inline

Definition at line 68 of file DetSet.h.

Referenced by TotemRPUVPattern::addHit(), RPCSim::addLinks(), ME0DigiModel::addLinks(), GEMDigiModel::addLinks(), CSCBaseElectronicsSim::addLinks(), GEMDigiModel::addLinksWithPartId(), ME0DigiModel::addLinksWithPartId(), TotemTimingRecHitProducerAlgorithm::build(), TotemRPRecHitProducerAlgorithm::buildRecoHits(), SiStripRawProcessingAlgorithms::convertVirginRawToHybrid(), SiStripDigitizerAlgorithm::digitize(), SiStripZeroSuppression::formatRawDigis(), FastLineRecognition::getPatterns(), ClusterTPAssociationProducer::getSimTrackId(), CTPPSDirectProtonSimulation::processProton(), Phase2Tracker::Phase2TrackerCommissioningDigiProducer::produce(), TotemRPLocalTrackFitter::produce(), LaserAlignmentT0Producer::produce(), CTPPSPixelLocalTrackProducer::produce(), TotemTimingTrackRecognition::produceTracks(), CTPPSDiamondTrackRecognition::produceTracks(), edm::DataMixingSiPixelWorker::putSiPixel(), edm::DataMixingSiStripWorker::putSiStrip(), edm::DataMixingSiStripRawWorker::putSiStrip(), TotemRPUVPatternFinder::recognizeAndSelect(), RawToDigiConverter::run(), SiStripZeroSuppression::storeBaseline(), SiStripZeroSuppression::storeBaselinePoints(), SiStripZeroSuppression::storeCMN(), sistrip::FEDEmulator::subtractPedestals(), SiStripFedZeroSuppression::suppress(), and SiStripRawProcessingAlgorithms::suppressHybridData().

68 { data.push_back(t); }
collection_type data
Definition: DetSet.h:80
template<class T>
void edm::DetSet< T >::reserve ( size_t  s)
inline
template<class T>
size_type edm::DetSet< T >::size ( void  ) const
inline
template<class T>
void edm::DetSet< T >::swap ( DetSet< T > &  other)
inline

Definition at line 113 of file DetSet.h.

References edm::DetSet< T >::data, edm::DetSet< T >::id, and std::swap().

Referenced by edm::DetSet< StripDigiSimLink >::clear(), and edm::swap().

113  {
114  data.swap(other.data);
115  std::swap(id, other.id);
116  }
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
collection_type data
Definition: DetSet.h:80

Member Data Documentation

template<class T>
collection_type edm::DetSet< T >::data

Definition at line 80 of file DetSet.h.

Referenced by MainPageGenerator.MainPageGenerator::__NewTreePage(), data_sources.node::__str__(), confdb.HLTProcess::_fix_parameter(), confdb.HLTProcess::addEras(), confdb.HLTProcess::addGlobalOptions(), cms::Phase2TrackerDigitizer::addPixelCollection(), SiStripMonitorDigi::analyze(), confdb.HLTProcess::append_filenames(), data_sources.json_list::as_dicts(), data_sources.json_list::as_table(), edm::DetSet< StripDigiSimLink >::begin(), FWSiStripDigiProxyBuilder::build(), FWSiPixelDigiProxyBuilder::build(), confdb.HLTProcess::build_source(), edm::DetSet< StripDigiSimLink >::clear(), SiStripProcessedRawDigiProducer::common_process(), sistrip::DigiToRaw::createFedBuffers_(), MainPageGenerator.MainPageGenerator::CreateNewMainPage(), confdb.HLTProcess::customize(), edm::DetSet< StripDigiSimLink >::DetSet(), SiStripDigitizerAlgorithm::digitize(), confdb.HLTProcess::dump(), edm::DetSet< StripDigiSimLink >::emplace_back(), edm::DetSet< StripDigiSimLink >::empty(), edm::DetSet< StripDigiSimLink >::end(), MainPageGenerator.MainPageGenerator::ExportJSON(), FastFedCablingTask::fill(), FedTimingTask::fill(), VpspScanTask::fill(), ApvTimingTask::fill(), OptoScanTask::fill(), PedestalsTask::fill(), FineDelayTask::fill(), LatencyTask::fill(), CalibrationScanTask::fill(), CalibrationTask::fill(), DaqScopeModeTask::fill(), PedsFullNoiseTask::fill(), confdb.HLTProcess::fixPrescales(), data_sources.json_list::get_members(), confdb.HLTProcess::getRawConfigurationFromDB(), ClusterTPAssociationProducer::getSimTrackId(), TT6PedestalCalculator::initializePedestal(), SimplePedestalCalculator::initializePedestal(), confdb.HLTProcess::instrumentDQM(), confdb.HLTProcess::instrumentOpenMode(), confdb.HLTProcess::instrumentTiming(), CTPPSPixelDataFormatter::interpretRawData(), PixelDataFormatter::interpretRawData(), data_sources.json_list::last(), confdb.HLTProcess::loadAdditionalConditions(), confdb.HLTProcess::loadCff(), confdb.HLTProcess::loadSetupCff(), OptoScanTask::locateTicks(), SiStripSpyDisplayModule::MakeDigiHist_(), SiStripSpyDisplayModule::MakeProcessedRawDigiHist_(), SiStripSpyDisplayModule::MakeRawDigiHist_(), edm::DetSet< StripDigiSimLink >::operator[](), confdb.HLTProcess::overrideGlobalTag(), confdb.HLTProcess::overrideL1MenuXml(), confdb.HLTProcess::overrideOutput(), confdb.HLTProcess::overrideParameters(), confdb.HLTProcess::overrideProcessName(), SiStripClusterToDigiProducer::process(), TTClusterAssociator< T >::produce(), CTPPSPixelRawToDigi::produce(), SiPixelRawToDigi::produce(), SiPixelCalibDigiProducer::produce(), edm::DetSet< StripDigiSimLink >::push_back(), PreMixingSiStripWorker::put(), TT6PedestalCalculator::refinePedestal(), SimplePedestalCalculator::refinePedestal(), edm::DetSet< StripDigiSimLink >::reserve(), TotemRPClusterProducer::run(), CTPPSPixelRecHitProducer::run(), DigiSimLinkAlgorithm::run(), CTPPSPixelClusterProducer::run(), confdb.HLTProcess::runL1Emulator(), edm::DetSet< StripDigiSimLink >::size(), confdb.HLTProcess::specificCustomize(), cuy.FindIssue::startElement(), SiStripFedZeroSuppression::suppress(), edm::DetSet< T >::swap(), ApvAnalysisFactory::update(), edmStreamStallGrapher.Stack::update(), ApvAnalysis::updateCalibration(), confdb.HLTProcess::updateMessageLogger(), and ApvAnalysisFactory::updatePair().

template<class T>
det_id_type edm::DetSet< T >::id