ATLAS Offline Software
Loading...
Searching...
No Matches
Calorimeter/CaloEvent/CaloEvent/CaloClusterBadChannelData.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef CALOCLUSTERBADCHANNELDATA_H
6#define CALOCLUSTERBADCHANNELDATA_H
7
9#include "CaloGeoHelpers/CaloSampling.h"
10
12{
13
14
15 public:
22 // Use implicit copy ctor.
24 float getEta() const;
26 float getPhi() const;
30 CaloBadChannel getFlag() const;
31
33
34 private:
35 float m_eta;
36 float m_phi;
39
40};
41
42inline float CaloClusterBadChannelData::getEta() const {return m_eta;}
43inline float CaloClusterBadChannelData::getPhi() const {return m_phi;}
46
47#endif
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
CaloClusterBadChannelData(float eta, float phi, CaloSampling::CaloSample layer, const CaloBadChannel &flag)
full Constructor
CaloBadChannel getFlag() const
Access bad channel flag.
CaloSampling::CaloSample getLayer() const
Access Layer.
virtual ~CaloClusterBadChannelData()
Destructor.