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

Constructor & Destructor Documentation

◆ Seed() [1/2]

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  };

◆ Seed() [2/2]

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

◆ operator==()

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

◆ m_sectorId

int TTUTrackingAlg::Seed::m_sectorId

Definition at line 54 of file TTUTrackingAlg.h.

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

◆ m_stationId

int TTUTrackingAlg::Seed::m_stationId

Definition at line 57 of file TTUTrackingAlg.h.

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

◆ m_tkLength

int TTUTrackingAlg::Seed::m_tkLength

Definition at line 58 of file TTUTrackingAlg.h.

Referenced by Seed().