ATLAS Offline Software
EnergyRoI.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3 */
4 /***************************************************************************
5  EnergyRoI.h - description
6  -------------------
7  begin : Friday May 05 2002
8  email : e.moyse@qmul.ac.uk
9  ***************************************************************************/
10 
11 
12 #ifndef EnergyRoI_H
13 #define EnergyRoI_H
14 
15 // Gaudi kernel stuff.
16 #include "GaudiKernel/DataObject.h"
17 
18 namespace LVL1 {
19 
26  class EnergyRoI : public DataObject {
27  public:
28 
29  // constructor
30  EnergyRoI(unsigned int word0, unsigned int word1, unsigned int word2) :
31  m_roiWord0(word0),m_roiWord1(word1), m_roiWord2(word2) {};
32 
33  // destructor
34  ~EnergyRoI(){};
36  unsigned int roiWord0() const {return m_roiWord0;}
38  unsigned int roiWord1() const {return m_roiWord1;}
40  unsigned int roiWord2() const {return m_roiWord2;}
41 private:
42  unsigned int m_roiWord0;
43  unsigned int m_roiWord1;
44  unsigned int m_roiWord2;
45 
46 };
47 
48 }//end of LVL1 namespace defn
49 
50 #ifndef ENERGYROI_CLASSDEF_H
52 #endif
53 
54 #endif
xAOD::word1
word1
Definition: eFexEMRoI_v1.cxx:82
LVL1::EnergyRoI::roiWord2
unsigned int roiWord2() const
return roi word 2
Definition: EnergyRoI.h:50
LVL1::EnergyRoI::roiWord0
unsigned int roiWord0() const
return roi word 0
Definition: EnergyRoI.h:46
LVL1
eFexTowerBuilder creates xAOD::eFexTowerContainer from supercells (LATOME) and triggerTowers (TREX) i...
Definition: ICMMCPHitsCnvTool.h:18
LVL1::EnergyRoI::m_roiWord0
unsigned int m_roiWord0
Definition: EnergyRoI.h:52
LVL1::EnergyRoI::~EnergyRoI
~EnergyRoI()
Definition: EnergyRoI.h:44
LVL1::EnergyRoI::m_roiWord1
unsigned int m_roiWord1
Definition: EnergyRoI.h:53
EnergyRoI_ClassDEF.h
LVL1::EnergyRoI::m_roiWord2
unsigned int m_roiWord2
Definition: EnergyRoI.h:54
LVL1::EnergyRoI::roiWord1
unsigned int roiWord1() const
return roi word 1
Definition: EnergyRoI.h:48
LVL1::EnergyRoI::EnergyRoI
EnergyRoI(unsigned int word0, unsigned int word1, unsigned int word2)
Definition: EnergyRoI.h:40