CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros 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)
 
 Seed (const Seed &_seed)
 
 ~Seed ()
 

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

References m_sectorId, m_stationId, and m_tkLength.

47  {
48  m_sectorId = _seId;
49  m_stationId = _stId;
50  m_tkLength = _tl;
51  };
TTUTrackingAlg::Seed::~Seed ( )
inline

Definition at line 53 of file TTUTrackingAlg.h.

53 {};
TTUTrackingAlg::Seed::Seed ( const Seed _seed)
inline

Definition at line 55 of file TTUTrackingAlg.h.

References m_sectorId, m_stationId, and m_tkLength.

56  {
57  m_sectorId = _seed.m_sectorId;
58  m_stationId = _seed.m_stationId;
59  m_tkLength = _seed.m_tkLength;
60  };

Member Function Documentation

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

Definition at line 62 of file TTUTrackingAlg.h.

References m_sectorId, and m_stationId.

63  {
64  return (m_sectorId == rhs.m_sectorId)
65  && (m_stationId == rhs.m_stationId);
66  };

Member Data Documentation

int TTUTrackingAlg::Seed::m_sectorId

Definition at line 66 of file TTUTrackingAlg.h.

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

int TTUTrackingAlg::Seed::m_stationId

Definition at line 69 of file TTUTrackingAlg.h.

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

int TTUTrackingAlg::Seed::m_tkLength

Definition at line 70 of file TTUTrackingAlg.h.

Referenced by Seed().