CMS 3D CMS Logo

Public Member Functions | Public Attributes

TTUTrackingAlg::Seed Class Reference

#include <TTUTrackingAlg.h>

List of all members.

Public Member Functions

bool operator== (const Seed &rhs)
 Seed (int _seId, int _stId, int _tl)
 Seed (const Seed &_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.

{m_sectorId = -9; m_stationId = -1; m_tkLength = 0;};
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.

    {
      m_sectorId  = _seId;
      m_stationId = _stId;
      m_tkLength  = _tl;
    };
TTUTrackingAlg::Seed::~Seed ( ) [inline]

Definition at line 53 of file TTUTrackingAlg.h.

{};
TTUTrackingAlg::Seed::Seed ( const Seed _seed) [inline]

Definition at line 55 of file TTUTrackingAlg.h.

References m_sectorId, m_stationId, and m_tkLength.

    {
      m_sectorId  = _seed.m_sectorId;
      m_stationId = _seed.m_stationId;
      m_tkLength  = _seed.m_tkLength;
    };

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.

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

Member Data Documentation

Definition at line 66 of file TTUTrackingAlg.h.

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

Definition at line 69 of file TTUTrackingAlg.h.

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

Definition at line 70 of file TTUTrackingAlg.h.

Referenced by Seed().