CMS 3D CMS Logo

Public Member Functions | Private Attributes

l1slhc::L1CaloRegion Class Reference

#include <L1CaloRegion.h>

List of all members.

Public Member Functions

const int & E () const
const int & iEta () const
const int & iPhi () const
 L1CaloRegion (const int &, const int &, const int &)
 L1CaloRegion ()
 ~L1CaloRegion ()

Private Attributes

int mE
int mIeta
int mIphi

Detailed Description

Definition at line 11 of file L1CaloRegion.h.


Constructor & Destructor Documentation

L1CaloRegion::L1CaloRegion ( )

Definition at line 9 of file L1CaloRegion.cc.

                                    :mIeta( 0 ), 
        mIphi( 0 ), 
        mE( 0 )
        {
        }
L1CaloRegion::L1CaloRegion ( const int &  iEta,
const int &  iPhi,
const int &  E 
)

Definition at line 15 of file L1CaloRegion.cc.

                                                                                  :mIeta( iEta ), 
        mIphi( iPhi ), 
        mE( E )
        {
        }
L1CaloRegion::~L1CaloRegion ( )

Definition at line 22 of file L1CaloRegion.cc.

        {
        }

Member Function Documentation

const int & L1CaloRegion::E ( ) const

Definition at line 36 of file L1CaloRegion.cc.

References mE.

Referenced by std::operator<().

        {
                return mE;
        }
const int & L1CaloRegion::iEta ( ) const

Definition at line 26 of file L1CaloRegion.cc.

References mIeta.

Referenced by std::operator<().

        {
                return mIeta;
        }
const int & L1CaloRegion::iPhi ( ) const

Definition at line 31 of file L1CaloRegion.cc.

References mIphi.

        {
                return mIphi;
        }

Member Data Documentation

int l1slhc::L1CaloRegion::mE [private]

Definition at line 28 of file L1CaloRegion.h.

Referenced by E().

Definition at line 26 of file L1CaloRegion.h.

Referenced by iEta().

Definition at line 27 of file L1CaloRegion.h.

Referenced by iPhi().