Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:11:34

0001 // ----------------------------------------------------------------------
0002 //
0003 // DecayData.icc
0004 //
0005 // ----------------------------------------------------------------------
0006 
0007 namespace HepPDT {
0008 
0009 DecayData::DecayData( )
0010 : itsDecayList    ( 0 )
0011 { ; }
0012 
0013 DecayData::DecayData( std::vector<DecayChannel > const & dv )
0014 : itsDecayList    ( dv )
0015 { ; }
0016 
0017 DecayData::~DecayData()
0018 { ; }
0019 
0020 DecayData::DecayData( DecayData const & orig )
0021 : itsDecayList    ( orig.itsDecayList )
0022 { ; }
0023 
0024 DecayData & DecayData::operator = ( DecayData const & rhs )
0025 { 
0026   if( this != & rhs )
0027   {
0028       itsDecayList    = rhs.itsDecayList;
0029   }
0030   return *this;
0031 }
0032 
0033 void DecayData::swap( DecayData & other )
0034 {
0035    std::swap( itsDecayList, other.itsDecayList );
0036 }
0037 
0038 } // HepPDT