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

#include "PxUtils.h"

Inheritance diagram for util::PxPoint:
util::PxHit

Public Member Functions

 PxPoint ()
 
 PxPoint (unsigned int pp, double ww, double tt)
 
void Clear ()
 
 ~PxPoint ()
 

Public Attributes

double w
 
double t
 
unsigned int plane
 

Detailed Description

Definition at line 8 of file PxUtils.h.

Constructor & Destructor Documentation

util::PxPoint::PxPoint ( )
inline

Definition at line 14 of file PxUtils.h.

References Clear().

Referenced by util::PxLine::pt0(), and util::PxLine::pt1().

14  {
15  Clear();
16  // std::cout<< "This is the default point ctor." << std::endl;
17  }
void Clear()
Definition: PxUtils.h:25
util::PxPoint::PxPoint ( unsigned int  pp,
double  ww,
double  tt 
)
inline

Definition at line 19 of file PxUtils.h.

19  {
20  plane=pp;
21  w=ww;
22  t=tt;
23  }
Definition: type_traits.h:56
double t
Definition: PxUtils.h:11
double w
Definition: PxUtils.h:10
unsigned int plane
Definition: PxUtils.h:12
util::PxPoint::~PxPoint ( )
inline

Definition at line 32 of file PxUtils.h.

32 {}

Member Function Documentation

void util::PxPoint::Clear ( )
inline

Definition at line 25 of file PxUtils.h.

Referenced by util::PxHit::Clear(), cluster::cluster_params::Clear(), util::PxHit::PxHit(), util::PxLine::PxLine(), and PxPoint().

26  {
27  plane = 0;
28  w = 0;
29  t = 0;
30  }
double t
Definition: PxUtils.h:11
double w
Definition: PxUtils.h:10
unsigned int plane
Definition: PxUtils.h:12

Member Data Documentation


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