File indexing completed on 2023-03-17 11:12:50
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef L1T_OmtfP1_OMTFANGLECONVERTER_H_
0009 #define L1T_OmtfP1_OMTFANGLECONVERTER_H_
0010
0011 #include "L1Trigger/L1TMuonOverlapPhase1/interface/AngleConverterBase.h"
0012
0013 class OmtfAngleConverter : public AngleConverterBase {
0014 public:
0015 OmtfAngleConverter() : AngleConverterBase(){};
0016
0017 ~OmtfAngleConverter() override;
0018
0019
0020
0021 virtual int getGlobalEta(const DTChamberId dTChamberId, const L1MuDTChambThContainer *dtThDigis, int bxNum) const;
0022
0023
0024 virtual int getGlobalEta(unsigned int rawid, const CSCCorrelatedLCTDigi &aDigi) const;
0025
0026
0027 virtual int getGlobalEtaRpc(unsigned int rawid, const unsigned int &aDigi) const;
0028
0029
0030 using AngleConverterBase::getGlobalEta;
0031 };
0032
0033 #endif