ATLAS Offline Software
Public Member Functions | Private Attributes | List of all members
MuonDQA::MuonDQAEvent Class Reference

#include <MuonDQAEvent.h>

Collaboration diagram for MuonDQA::MuonDQAEvent:

Public Member Functions

 MuonDQAEvent ()
 Default constructor. More...
 
 MuonDQAEvent (const MuonDQAEvent &event)
 Copy constructor. More...
 
 ~MuonDQAEvent ()
 Destructor. More...
 
MuonDQAEventoperator= (const MuonDQAEvent &rhs)
 Assignment operator. More...
 
const MuonDQAEventInfoeventInfo () const
 
void setMuonDQAEventInfo (const MuonDQAEventInfo &eventInfo)
 retrieve the MuonDQAEventInfo. More...
 

Private Attributes

MuonDQAEventInfo m_eventInfo
 set the MuonDQAEventInfo More...
 

Detailed Description

Container class storing all entries of the MuonDQA Monitoring histos. It contains the following:

Definition at line 28 of file MuonDQAEvent.h.

Constructor & Destructor Documentation

◆ MuonDQAEvent() [1/2]

MuonDQA::MuonDQAEvent::MuonDQAEvent ( )

Default constructor.

Definition at line 12 of file MuonDQAEvent.cxx.

12  : m_eventInfo()
13  {}

◆ MuonDQAEvent() [2/2]

MuonDQA::MuonDQAEvent::MuonDQAEvent ( const MuonDQAEvent event)

Copy constructor.

Definition at line 18 of file MuonDQAEvent.cxx.

19  : m_eventInfo (event.eventInfo())
20  {
21  }

◆ ~MuonDQAEvent()

MuonDQA::MuonDQAEvent::~MuonDQAEvent ( )

Destructor.

Definition at line 15 of file MuonDQAEvent.cxx.

15  {
16  }

Member Function Documentation

◆ eventInfo()

const MuonDQAEventInfo& MuonDQA::MuonDQAEvent::eventInfo ( ) const
inline

Definition at line 36 of file MuonDQAEvent.h.

36 { return m_eventInfo ;};

◆ operator=()

MuonDQAEvent & MuonDQA::MuonDQAEvent::operator= ( const MuonDQAEvent rhs)

Assignment operator.

Definition at line 23 of file MuonDQAEvent.cxx.

24  {
25  if(this!=&rhs){
26  m_eventInfo = rhs.eventInfo() ;
27  }
28  return (*this) ;
29  }

◆ setMuonDQAEventInfo()

void MuonDQA::MuonDQAEvent::setMuonDQAEventInfo ( const MuonDQAEventInfo eventInfo)
inline

retrieve the MuonDQAEventInfo.

Definition at line 37 of file MuonDQAEvent.h.

37 { m_eventInfo = eventInfo ; } ;

Member Data Documentation

◆ m_eventInfo

MuonDQAEventInfo MuonDQA::MuonDQAEvent::m_eventInfo
private

set the MuonDQAEventInfo

MuonDQAEventInfo of the MuonDQAEvent

Definition at line 41 of file MuonDQAEvent.h.


The documentation for this class was generated from the following files:
event
POOL::TEvent event(POOL::TEvent::kClassAccess)
MuonDQA::MuonDQAEvent::eventInfo
const MuonDQAEventInfo & eventInfo() const
Definition: MuonDQAEvent.h:36
MuonDQA::MuonDQAEvent::m_eventInfo
MuonDQAEventInfo m_eventInfo
set the MuonDQAEventInfo
Definition: MuonDQAEvent.h:37