LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
Track Class Reference

#include "Track.hh"

Public Member Functions

 Track ()
 
 ~Track ()
 
const StepGetStep () const
 
const StepGetStep1 () const
 
const StepGetStep2 () const
 
const StepGetStep3 () const
 
const StepGetStep4 () const
 

Private Attributes

Stepstep
 

Detailed Description

Definition at line 42 of file Track.hh.

Constructor & Destructor Documentation

Track::Track ( )

Definition at line 42 of file Track.cc.

References step.

44 {
45  std::cout << "Track is created. @"
46  << this << std::endl;
47  step= new Step();
48 }
Step * step
Definition: Track.hh:44
Definition: Step.hh:40
Track::~Track ( )

Definition at line 51 of file Track.cc.

References step.

53 {
54  std::cout << "Track is deleted. @"
55  << this << std::endl;
56  delete step;
57 }
Step * step
Definition: Track.hh:44

Member Function Documentation

const Step * Track::GetStep ( ) const

Definition at line 61 of file Track.cc.

References step.

Referenced by GetStep1(), GetStep2(), GetStep3(), and GetStep4().

63 {
64  return step;
65 }
Step * step
Definition: Track.hh:44
const Step * Track::GetStep1 ( ) const

Definition at line 69 of file Track.cc.

References GetStep().

Referenced by BOOST_PYTHON_MODULE().

71 {
72  return GetStep();
73 }
const Step * GetStep() const
Definition: Track.cc:61
const Step * Track::GetStep2 ( ) const

Definition at line 76 of file Track.cc.

References GetStep().

Referenced by BOOST_PYTHON_MODULE().

78 {
79  return GetStep();
80 }
const Step * GetStep() const
Definition: Track.cc:61
const Step * Track::GetStep3 ( ) const

Definition at line 83 of file Track.cc.

References GetStep().

Referenced by BOOST_PYTHON_MODULE().

85 {
86  return GetStep();
87 }
const Step * GetStep() const
Definition: Track.cc:61
const Step * Track::GetStep4 ( ) const

Definition at line 90 of file Track.cc.

References GetStep().

92 {
93  return GetStep();
94 }
const Step * GetStep() const
Definition: Track.cc:61

Member Data Documentation

Step* Track::step
private

Definition at line 44 of file Track.hh.

Referenced by GetStep(), Track(), and ~Track().


The documentation for this class was generated from the following files: