Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SvtxTrackSeed_v1.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file SvtxTrackSeed_v1.cc
1 #include "SvtxTrackSeed_v1.h"
2 
4 {}
5 
6 // have to suppress missingMemberCopy from cppcheck, it does not
7 // go down to the CopyFrom method where things are done correctly
8 // cppcheck-suppress missingMemberCopy
10 { SvtxTrackSeed_v1::CopyFrom( seed ); }
11 
13 { if( this != &seed ) CopyFrom( seed ); return *this; }
14 
16 {}
17 
19 {
20  if( this == &seed ) return;
21  TrackSeed::CopyFrom( seed );
22 
25 
26 }
27 
28 void SvtxTrackSeed_v1::identify(std::ostream& os) const
29 {
30 
31  os << "SvtxTrackSeed_v1 object ";
32  os << "Silicon seed index: " << m_silicon_seed;
33  os << "tpc seed index: " << m_tpc_seed;
34 }