CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
ScoutingVertex Class Reference

#include <ScoutingVertex.h>

Public Member Functions

 ScoutingVertex (float x, float y, float z, float zError)
 
 ScoutingVertex ()
 
float x () const
 
float y () const
 
float z () const
 
float zError () const
 

Private Attributes

float x_
 
float y_
 
float z_
 
float zError_
 

Detailed Description

Definition at line 8 of file ScoutingVertex.h.

Constructor & Destructor Documentation

ScoutingVertex::ScoutingVertex ( float  x,
float  y,
float  z,
float  zError 
)
inline

Definition at line 12 of file ScoutingVertex.h.

12  :
13  x_(x), y_(y), z_(z), zError_(zError) {}
float x() const
float zError() const
float y() const
float z() const
ScoutingVertex::ScoutingVertex ( )
inline

Definition at line 15 of file ScoutingVertex.h.

15 : x_(0), y_(0), z_(0), zError_(0) {}

Member Function Documentation

float ScoutingVertex::x ( ) const
inline
float ScoutingVertex::y ( ) const
inline
float ScoutingVertex::z ( ) const
inline

Definition at line 20 of file ScoutingVertex.h.

References z_.

Referenced by geometryXMLparser.Alignable::pos().

20 { return z_; }
float ScoutingVertex::zError ( ) const
inline

Definition at line 21 of file ScoutingVertex.h.

References zError_.

21 { return zError_; }

Member Data Documentation

float ScoutingVertex::x_
private

Definition at line 24 of file ScoutingVertex.h.

Referenced by x().

float ScoutingVertex::y_
private

Definition at line 25 of file ScoutingVertex.h.

Referenced by y().

float ScoutingVertex::z_
private

Definition at line 26 of file ScoutingVertex.h.

Referenced by z().

float ScoutingVertex::zError_
private

Definition at line 27 of file ScoutingVertex.h.

Referenced by zError().