CMS 3D CMS Logo

List of all members | Classes | Public Types | Public Member Functions | Private Member Functions | Private Attributes | Friends
SiStripBaseDelay Class Reference

#include <SiStripBaseDelay.h>

Classes

struct  Delay
 

Public Types

typedef std::vector< Delay >::const_iterator delayConstIt
 
typedef std::vector< Delay >::iterator delayIt
 

Public Member Functions

uint16_t coarseDelay (const uint32_t detId)
 
double delay (const uint32_t detId) const
 
void delays (std::vector< Delay > &delays) const
 Fill the input container with all the delays. More...
 
uint32_t delaysSize () const
 Get the total number of delays stored (should equal the total number of modules in the SiStripTracker) More...
 
void detIds (std::vector< uint32_t > &detIdVector) const
 Get the list of all detIds for which a delay is stored. More...
 
uint16_t fineDelay (const uint32_t detId) const
 
void printDebug (std::stringstream &ss, const TrackerTopology *trackerTopo) const
 Prints the delays for all the detIds. More...
 
void printSummary (std::stringstream &ss, const TrackerTopology *trackerTopo) const
 Prints the average value of the delays for all layers and wheels in the SiStripTracker. More...
 
bool put (const uint32_t detId, const uint16_t coarseDelay, const uint16_t fineDelay)
 
 SiStripBaseDelay ()
 

Private Member Functions

double makeDelay (const uint16_t coarseDelay, const uint16_t fineDelay) const
 
template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Private Attributes

std::vector< Delaydelays_
 

Friends

class boost::serialization::access
 
template<typename CondSerializationT , typename Enabled >
struct cond::serialization::access
 

Detailed Description

Author: M. De Mattia (demat.nosp@m.tia@.nosp@m.pd.in.nosp@m.fn.i.nosp@m.t) 25/10/2010:

Base Delay object containing the PLL or time of flight delays.
It stores the values in a vector<Delay>, which is not sorted.
This object can be used directly to access the information on the delays for each detId. However, it is recommended to use the SiStripDelay dependent record which is able to combine multiple BaseDelays and provides a much faster access to the information.

Definition at line 24 of file SiStripBaseDelay.h.

Member Typedef Documentation

typedef std::vector<Delay>::const_iterator SiStripBaseDelay::delayConstIt

Definition at line 51 of file SiStripBaseDelay.h.

typedef std::vector<Delay>::iterator SiStripBaseDelay::delayIt

Definition at line 50 of file SiStripBaseDelay.h.

Constructor & Destructor Documentation

SiStripBaseDelay::SiStripBaseDelay ( )
inline

Definition at line 28 of file SiStripBaseDelay.h.

28 {}

Member Function Documentation

uint16_t SiStripBaseDelay::coarseDelay ( const uint32_t  detId)

Definition at line 16 of file SiStripBaseDelay.cc.

References delays_, and SiStripBaseDelay::Delay::detId.

17 {
18  delayConstIt it = std::find_if(delays_.begin(), delays_.end(), boost::bind(&Delay::detId, _1) == detId);
19  if( it != delays_.end() ) {
20  return it->coarseDelay;
21  }
22  return 0;
23 }
std::vector< Delay >::const_iterator delayConstIt
std::vector< Delay > delays_
double SiStripBaseDelay::delay ( const uint32_t  detId) const

Definition at line 34 of file SiStripBaseDelay.cc.

References delays_, SiStripBaseDelay::Delay::detId, and makeDelay().

35 {
36  delayConstIt it = std::find_if(delays_.begin(), delays_.end(), boost::bind(&Delay::detId, _1) == detId);
37  if( it != delays_.end() ) {
38  return makeDelay(it->coarseDelay, it->fineDelay);
39  }
40  return 0;
41 }
std::vector< Delay >::const_iterator delayConstIt
double makeDelay(const uint16_t coarseDelay, const uint16_t fineDelay) const
std::vector< Delay > delays_
void SiStripBaseDelay::delays ( std::vector< Delay > &  delays) const
inline

Fill the input container with all the delays.

Definition at line 59 of file SiStripBaseDelay.h.

References delays_, and detIds().

60  {
61  delays = delays_;
62  }
void delays(std::vector< Delay > &delays) const
Fill the input container with all the delays.
std::vector< Delay > delays_
uint32_t SiStripBaseDelay::delaysSize ( ) const
inline

Get the total number of delays stored (should equal the total number of modules in the SiStripTracker)

Definition at line 68 of file SiStripBaseDelay.h.

References delays_, printDebug(), and printSummary().

69  {
70  return delays_.size();
71  }
std::vector< Delay > delays_
void SiStripBaseDelay::detIds ( std::vector< uint32_t > &  detIdVector) const

Get the list of all detIds for which a delay is stored.

Definition at line 43 of file SiStripBaseDelay.cc.

References delays_.

Referenced by delays().

44 {
45  std::vector<Delay>::const_iterator it = delays_.begin();
46  for( ; it != delays_.end(); ++it ) {
47  detIdVector.push_back(it->detId);
48  }
49 }
std::vector< Delay > delays_
uint16_t SiStripBaseDelay::fineDelay ( const uint32_t  detId) const

Definition at line 25 of file SiStripBaseDelay.cc.

References delays_, and SiStripBaseDelay::Delay::detId.

26 {
27  delayConstIt it = std::find_if(delays_.begin(), delays_.end(), boost::bind(&Delay::detId, _1) == detId);
28  if( it != delays_.end() ) {
29  return it->fineDelay;
30  }
31  return 0;
32 }
std::vector< Delay >::const_iterator delayConstIt
std::vector< Delay > delays_
double SiStripBaseDelay::makeDelay ( const uint16_t  coarseDelay,
const uint16_t  fineDelay 
) const
inlineprivate

Definition at line 80 of file SiStripBaseDelay.h.

Referenced by delay(), printDebug(), and printSummary().

81  {
82  return( coarseDelay*25 + fineDelay*(25/24.) );
83  }
uint16_t coarseDelay(const uint32_t detId)
uint16_t fineDelay(const uint32_t detId) const
void SiStripBaseDelay::printDebug ( std::stringstream &  ss,
const TrackerTopology trackerTopo 
) const

Prints the delays for all the detIds.

Definition at line 63 of file SiStripBaseDelay.cc.

References delays_, makeDelay(), and printSummary().

Referenced by delaysSize().

64 {
65  printSummary(ss, trackerTopo);
66  delayConstIt it = delays_.begin();
67  ss << std::endl << "All pedestal values:" << std::endl;
68  for( ; it != delays_.end(); ++it ) {
69  ss << "detId = " << it->detId << " delay = " << makeDelay(it->coarseDelay, it->fineDelay) << std::endl;
70  }
71 }
std::vector< Delay >::const_iterator delayConstIt
void printSummary(std::stringstream &ss, const TrackerTopology *trackerTopo) const
Prints the average value of the delays for all layers and wheels in the SiStripTracker.
double makeDelay(const uint16_t coarseDelay, const uint16_t fineDelay) const
std::vector< Delay > delays_
void SiStripBaseDelay::printSummary ( std::stringstream &  ss,
const TrackerTopology trackerTopo 
) const

Prints the average value of the delays for all layers and wheels in the SiStripTracker.

Definition at line 51 of file SiStripBaseDelay.cc.

References delays_, and makeDelay().

Referenced by delaysSize(), and printDebug().

52 {
53  ss << "Total number of delays = " << delays_.size() << std::endl;
54  SiStripDetSummary summaryDelays{trackerTopo};
55  delayConstIt it = delays_.begin();
56  for( ; it != delays_.end(); ++it ) {
57  summaryDelays.add(it->detId, makeDelay(it->coarseDelay, it->fineDelay));
58  }
59  ss << std::endl << "Summary:" << std::endl;
60  summaryDelays.print(ss);
61 }
std::vector< Delay >::const_iterator delayConstIt
double makeDelay(const uint16_t coarseDelay, const uint16_t fineDelay) const
std::vector< Delay > delays_
bool SiStripBaseDelay::put ( const uint32_t  detId,
const uint16_t  coarseDelay,
const uint16_t  fineDelay 
)

Definition at line 10 of file SiStripBaseDelay.cc.

References delays_.

11 {
12  delays_.push_back(Delay(detId, coarseDelay, fineDelay));
13  return true;
14 }
uint16_t coarseDelay(const uint32_t detId)
uint16_t fineDelay(const uint32_t detId) const
std::vector< Delay > delays_
template<class Archive >
void SiStripBaseDelay::serialize ( Archive &  ar,
const unsigned int  version 
)
private

Friends And Related Function Documentation

friend class boost::serialization::access
friend

Definition at line 87 of file SiStripBaseDelay.h.

template<typename CondSerializationT , typename Enabled >
friend struct cond::serialization::access
friend

Definition at line 87 of file SiStripBaseDelay.h.

Member Data Documentation

std::vector<Delay> SiStripBaseDelay::delays_
private