#include <MuonSpectrometer.h>
Collaboration diagram for Atlfast::IsCorrectSector:
Public Member Functions | |
IsCorrectSector (std::string sectortype) | |
bool | operator() (Sector &) |
Private Attributes | |
std::string | m_sectortype |
Definition at line 141 of file MuonSpectrometer.h.
Atlfast::IsCorrectSector::IsCorrectSector | ( | std::string | sectortype | ) |
Definition at line 56 of file MuonSpectrometer.cxx.
00056 : 00057 m_sectortype(sectortype){} bool IsCorrectSector::operator()(Sector& sec){
bool Atlfast::IsCorrectSector::operator() | ( | Sector & | ) |
Definition at line 58 of file MuonSpectrometer.cxx.
00058 { 00059 // returns true if this Sector is of the correct type 00060 return ( m_sectortype == sec.getSectorType() ) ? true : false; 00061 }
std::string Atlfast::IsCorrectSector::m_sectortype [private] |
Definition at line 146 of file MuonSpectrometer.h.