ATLAS Offline Software
Loading...
Searching...
No Matches
LArOFCBinP.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 LARRAWCONDITIONS_LAROFCBINP
6#define LARRAWCONDITIONS_LAROFCBINP
7
8class LArOFCBinP {
9 public:
11 LArOFCBinP(int b) : m_bin(b) {}
12 bool isEmpty() const {return (m_bin==ERRORCODE);};
13 int m_bin;
14 enum {ERRORCODE=-999};
15};
16
17#endif
LArOFCBinP(int b)
Definition LArOFCBinP.h:11
bool isEmpty() const
Definition LArOFCBinP.h:12