LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
Step Class Reference

#include "Step.hh"

Public Member Functions

 Step ()
 
 ~Step ()
 
void SetX (double x0)
 
double GetX () const
 

Private Attributes

double x
 

Detailed Description

Definition at line 41 of file Step.hh.

Constructor & Destructor Documentation

Step::Step ( )

Definition at line 42 of file Step.cc.

43  : x(0)
45 {
46  std::cout << "Step is created. @"
47  << this << std::endl;
48 }
double x
Definition: Step.hh:43
Step::~Step ( )

Definition at line 52 of file Step.cc.

54 {
55  std::cout << "Step is deleted. @"
56  << this << std::endl;
57 }

Member Function Documentation

double Step::GetX ( ) const
inline

Definition at line 58 of file Step.hh.

References x.

Referenced by BOOST_PYTHON_MODULE().

58 { return x; }
double x
Definition: Step.hh:43
void Step::SetX ( double  x0)
inline

Definition at line 57 of file Step.hh.

References x.

Referenced by BOOST_PYTHON_MODULE().

57 { x= x0; }
double x
Definition: Step.hh:43

Member Data Documentation

double Step::x
private

Definition at line 43 of file Step.hh.

Referenced by GetX(), and SetX().


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