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 189 of file CaloTruthAccumulator.cc.

Member Function Documentation

◆ clear()

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

Definition at line 198 of file CaloTruthAccumulator.cc.

References sc_start_, and sc_stop_.

198  {
199  sc_start_.clear();
200  sc_stop_.clear();
201  }

◆ swap()

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

Definition at line 193 of file CaloTruthAccumulator.cc.

References sc_start_, and sc_stop_.

Referenced by CaloTruthAccumulator::finalizeEvent().

193  {
194  sc_start_.swap(oth.sc_start_);
195  sc_stop_.swap(oth.sc_stop_);
196  }

Member Data Documentation

◆ sc_start_

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

Definition at line 190 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 191 of file CaloTruthAccumulator.cc.

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