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

◆ Seed() [1/2]

TTUTrackingAlg::Seed::Seed ( )
inline

Definition at line 42 of file TTUTrackingAlg.h.

42  {
43  m_sectorId = -9;
44  m_stationId = -1;
45  m_tkLength = 0;
46  };

References m_sectorId, m_stationId, and m_tkLength.

◆ Seed() [2/2]

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

Definition at line 47 of file TTUTrackingAlg.h.

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

References m_sectorId, m_stationId, and m_tkLength.

Member Function Documentation

◆ operator==()

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

Definition at line 53 of file TTUTrackingAlg.h.

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

References m_sectorId, and m_stationId.

Member Data Documentation

◆ m_sectorId

int TTUTrackingAlg::Seed::m_sectorId

Definition at line 53 of file TTUTrackingAlg.h.

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

◆ m_stationId

int TTUTrackingAlg::Seed::m_stationId

Definition at line 56 of file TTUTrackingAlg.h.

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

◆ m_tkLength

int TTUTrackingAlg::Seed::m_tkLength

Definition at line 57 of file TTUTrackingAlg.h.

Referenced by Seed().

TTUTrackingAlg::Seed::m_stationId
int m_stationId
Definition: TTUTrackingAlg.h:56
TTUTrackingAlg::Seed::m_tkLength
int m_tkLength
Definition: TTUTrackingAlg.h:57
TTUTrackingAlg::Seed::m_sectorId
int m_sectorId
Definition: TTUTrackingAlg.h:53