CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
CaloTruthAccumulator::calo_particles Struct Reference

Public Member Functions

void clear ()
 
void swap (calo_particles &oth)
 

Public Attributes

std::vector< uint32_t > sc_start_
 
std::vector< uint32_t > sc_stop_
 

Detailed Description

Definition at line 119 of file CaloTruthAccumulator.cc.

Member Function Documentation

◆ clear()

void CaloTruthAccumulator::calo_particles::clear ( void  )
inline

Definition at line 128 of file CaloTruthAccumulator.cc.

References sc_start_, and sc_stop_.

128  {
129  sc_start_.clear();
130  sc_stop_.clear();
131  }

◆ swap()

void CaloTruthAccumulator::calo_particles::swap ( calo_particles oth)
inline

Definition at line 123 of file CaloTruthAccumulator.cc.

References sc_start_, and sc_stop_.

Referenced by CaloTruthAccumulator::finalizeEvent().

123  {
124  sc_start_.swap(oth.sc_start_);
125  sc_stop_.swap(oth.sc_stop_);
126  }

Member Data Documentation

◆ sc_start_

std::vector<uint32_t> CaloTruthAccumulator::calo_particles::sc_start_

Definition at line 120 of file CaloTruthAccumulator.cc.

Referenced by clear(), CaloTruthAccumulator::finalizeEvent(), and swap().

◆ sc_stop_

std::vector<uint32_t> CaloTruthAccumulator::calo_particles::sc_stop_

Definition at line 121 of file CaloTruthAccumulator.cc.

Referenced by clear(), CaloTruthAccumulator::finalizeEvent(), and swap().