ATLAS Offline Software
Loading...
Searching...
No Matches
L1CaloPpmDeadChannels.h
Go to the documentation of this file.
1// -*- C++ -*-
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7#ifndef TRIGT1CALOCALIBCONDITIONS_L1CALOPPMDEADCHANNELS_H
8#define TRIGT1CALOCALIBCONDITIONS_L1CALOPPMDEADCHANNELS_H
9
17{
18public:
20 L1CaloPpmDeadChannels(unsigned int channelId, unsigned int errorCode, unsigned int noiseCut);
21
22 unsigned int channelId() const { return m_channelId; }
23 unsigned int errorCode() const { return m_errorCode; }
24 unsigned int noiseCut() const { return m_noiseCut; }
25
26 void setChannelId(unsigned int channelId) { m_channelId = channelId; }
27 void setErrorCode(unsigned int errorCode) { m_errorCode = errorCode; }
28 void setNoiseCut(unsigned int noiseCut) { m_noiseCut = noiseCut; }
29
30private:
31 unsigned int m_channelId = 0;
32 unsigned int m_errorCode = 0;
33 unsigned int m_noiseCut = 0;
34};
35
36#endif // TRIGT1CALOCALIBCONDITIONS_L1CALOPPMDEADCHANNELS_H
void setNoiseCut(unsigned int noiseCut)
unsigned int errorCode() const
unsigned int channelId() const
void setErrorCode(unsigned int errorCode)
unsigned int noiseCut() const
void setChannelId(unsigned int channelId)