AliRoot Core  3dc7879 (3dc7879)
AliVTrdTrack.cxx
Go to the documentation of this file.
1 #include "AliVTrdTrack.h"
2 
4  TObject()
5 {
6  // default constructor
7 
8 }
9 
11  TObject(rhs)
12 {
13  // copy constructor
14 
15 }
16 
18 {
19  // assignment operator
20 
21  if (&rhs != this)
22  TObject::operator=(rhs);
23 
24  return *this;
25 }
26 
27 void AliVTrdTrack::Copy(TObject &rhs) const
28 {
29  // copy
30 
31  TObject::Copy(rhs);
32 }
AliVTrdTrack & operator=(const AliVTrdTrack &track)
virtual void Copy(TObject &obj) const