CMS 3D CMS Logo

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 40 of file TTUTrackingAlg.h.

Constructor & Destructor Documentation

TTUTrackingAlg::Seed::Seed ( )
inline

Definition at line 44 of file TTUTrackingAlg.h.

References m_sectorId, m_stationId, and m_tkLength.

TTUTrackingAlg::Seed::Seed ( int  _seId,
int  _stId,
int  _tl 
)
inline

Definition at line 45 of file TTUTrackingAlg.h.

References m_sectorId, m_stationId, and m_tkLength.

46  {
47  m_sectorId = _seId;
48  m_stationId = _stId;
49  m_tkLength = _tl;
50  };

Member Function Documentation

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

Definition at line 52 of file TTUTrackingAlg.h.

References m_sectorId, and m_stationId.

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

Member Data Documentation

int TTUTrackingAlg::Seed::m_sectorId

Definition at line 56 of file TTUTrackingAlg.h.

Referenced by TTUTrackingAlg::findNeighbors(), operator==(), and Seed().

int TTUTrackingAlg::Seed::m_stationId

Definition at line 59 of file TTUTrackingAlg.h.

Referenced by TTUTrackingAlg::findNeighbors(), operator==(), and Seed().

int TTUTrackingAlg::Seed::m_tkLength

Definition at line 60 of file TTUTrackingAlg.h.

Referenced by Seed().