CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Public Attributes
TTUTrackingAlg::Seed Class Reference

#include <TTUTrackingAlg.h>

Public Member Functions

bool operator== (const Seed &rhs)
 
 Seed ()
 
 Seed (int _seId, int _stId, int _tl)
 

Public Attributes

int m_sectorId
 
int m_stationId
 
int m_tkLength
 

Detailed Description

Definition at line 41 of file TTUTrackingAlg.h.

Constructor & Destructor Documentation

TTUTrackingAlg::Seed::Seed ( )
inline

Definition at line 43 of file TTUTrackingAlg.h.

References m_sectorId, m_stationId, and m_tkLength.

43  {
44  m_sectorId = -9;
45  m_stationId = -1;
46  m_tkLength = 0;
47  };
TTUTrackingAlg::Seed::Seed ( int  _seId,
int  _stId,
int  _tl 
)
inline

Definition at line 48 of file TTUTrackingAlg.h.

References m_sectorId, m_stationId, and m_tkLength.

48  {
49  m_sectorId = _seId;
50  m_stationId = _stId;
51  m_tkLength = _tl;
52  };

Member Function Documentation

bool TTUTrackingAlg::Seed::operator== ( const Seed rhs)
inline

Definition at line 54 of file TTUTrackingAlg.h.

References m_sectorId, and m_stationId.

54 { return (m_sectorId == rhs.m_sectorId) && (m_stationId == rhs.m_stationId); };

Member Data Documentation

int TTUTrackingAlg::Seed::m_sectorId
int TTUTrackingAlg::Seed::m_stationId
int TTUTrackingAlg::Seed::m_tkLength

Definition at line 58 of file TTUTrackingAlg.h.

Referenced by Seed().