CMS 3D CMS Logo

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

#include <TkMeasurementDetSet.h>

Public Member Functions

const ClusterParameterEstimator< Phase2TrackerCluster1D > * cpe () const
 
int find (unsigned int jd, int i=0) const
 
unsigned int id (int i) const
 
void init (int size)
 
bool isActiveThisPeriod (int i) const
 
int nDet () const
 
 Phase2OTMeasurementConditionSet (const ClusterParameterEstimator< Phase2TrackerCluster1D > *cpe)
 
void setActive (int i, bool active)
 Turn on/off the module for reconstruction, for the full run or lumi (using info from DB, usually). This also resets the 'setActiveThisEvent' to true. More...
 

Private Attributes

std::vector< bool > activeThisPeriod_
 
std::vector< unsigned int > id_
 
const ClusterParameterEstimator< Phase2TrackerCluster1D > * theCPE
 

Friends

class MeasurementTrackerImpl
 

Detailed Description

Definition at line 426 of file TkMeasurementDetSet.h.

Constructor & Destructor Documentation

◆ Phase2OTMeasurementConditionSet()

Phase2OTMeasurementConditionSet::Phase2OTMeasurementConditionSet ( const ClusterParameterEstimator< Phase2TrackerCluster1D > *  cpe)
inline

Definition at line 428 of file TkMeasurementDetSet.h.

428 : theCPE(cpe) {}
const ClusterParameterEstimator< Phase2TrackerCluster1D > * cpe() const
const ClusterParameterEstimator< Phase2TrackerCluster1D > * theCPE

Member Function Documentation

◆ cpe()

const ClusterParameterEstimator<Phase2TrackerCluster1D>* Phase2OTMeasurementConditionSet::cpe ( ) const
inline

Definition at line 436 of file TkMeasurementDetSet.h.

References theCPE.

436 { return theCPE; }
const ClusterParameterEstimator< Phase2TrackerCluster1D > * theCPE

◆ find()

int Phase2OTMeasurementConditionSet::find ( unsigned int  jd,
int  i = 0 
) const
inline

◆ id()

unsigned int Phase2OTMeasurementConditionSet::id ( int  i) const
inline

Definition at line 433 of file TkMeasurementDetSet.h.

References mps_fire::i, and id_.

Referenced by Phase2OTMeasurementDetSet::id(), and MeasurementTrackerImpl::initialize().

433 { return id_[i]; }
std::vector< unsigned int > id_

◆ init()

void Phase2OTMeasurementConditionSet::init ( int  size)

Definition at line 42 of file TkMeasurementDetSet.cc.

References activeThisPeriod_, id_, and findQualityFiles::size.

Referenced by MeasurementTrackerImpl::initPhase2OTMeasurementConditionSet().

42  {
43  activeThisPeriod_.resize(size, true);
44  id_.resize(size);
45 }
size
Write out results.
std::vector< unsigned int > id_

◆ isActiveThisPeriod()

bool Phase2OTMeasurementConditionSet::isActiveThisPeriod ( int  i) const
inline

Definition at line 437 of file TkMeasurementDetSet.h.

References activeThisPeriod_, and mps_fire::i.

Referenced by Phase2OTMeasurementDetSet::isActive().

437 { return activeThisPeriod_[i]; }

◆ nDet()

int Phase2OTMeasurementConditionSet::nDet ( ) const
inline

Definition at line 432 of file TkMeasurementDetSet.h.

References id_.

Referenced by Phase2OTMeasurementDetSet::size().

432 { return id_.size(); }
std::vector< unsigned int > id_

◆ setActive()

void Phase2OTMeasurementConditionSet::setActive ( int  i,
bool  active 
)
inline

Turn on/off the module for reconstruction, for the full run or lumi (using info from DB, usually). This also resets the 'setActiveThisEvent' to true.

Definition at line 441 of file TkMeasurementDetSet.h.

References activeThisPeriod_, and mps_fire::i.

441 { activeThisPeriod_[i] = active; }

Friends And Related Function Documentation

◆ MeasurementTrackerImpl

friend class MeasurementTrackerImpl
friend

Definition at line 444 of file TkMeasurementDetSet.h.

Member Data Documentation

◆ activeThisPeriod_

std::vector<bool> Phase2OTMeasurementConditionSet::activeThisPeriod_
private

Definition at line 451 of file TkMeasurementDetSet.h.

Referenced by init(), isActiveThisPeriod(), and setActive().

◆ id_

std::vector<unsigned int> Phase2OTMeasurementConditionSet::id_
private

◆ theCPE

const ClusterParameterEstimator<Phase2TrackerCluster1D>* Phase2OTMeasurementConditionSet::theCPE
private

Definition at line 447 of file TkMeasurementDetSet.h.

Referenced by cpe().