ATLAS Offline Software
Public Member Functions | List of all members
dqm_algorithms::summary::AlwaysGreenSummary Struct Reference

#include <AlwaysGreenSummary.h>

Inheritance diagram for dqm_algorithms::summary::AlwaysGreenSummary:
Collaboration diagram for dqm_algorithms::summary::AlwaysGreenSummary:

Public Member Functions

 AlwaysGreenSummary ()
 
 ~AlwaysGreenSummary ()
 
AlwaysGreenSummaryclone ()
 
dqm_core::Resultexecute (const std::string &, const dqm_core::Result &result, const dqm_core::ParametersMap &)
 

Detailed Description

Definition at line 19 of file AlwaysGreenSummary.h.

Constructor & Destructor Documentation

◆ AlwaysGreenSummary()

dqm_algorithms::summary::AlwaysGreenSummary::AlwaysGreenSummary ( )

Definition at line 21 of file AlwaysGreenSummary.cxx.

22 {
23  dqm_core::AlgorithmManager::instance().registerSummaryMaker( "AlwaysGreenSummary", this );
24 }

◆ ~AlwaysGreenSummary()

dqm_algorithms::summary::AlwaysGreenSummary::~AlwaysGreenSummary ( )

Definition at line 26 of file AlwaysGreenSummary.cxx.

27 {
28 }

Member Function Documentation

◆ clone()

dqm_algorithms::summary::AlwaysGreenSummary * dqm_algorithms::summary::AlwaysGreenSummary::clone ( )

Definition at line 31 of file AlwaysGreenSummary.cxx.

32 {
33  return new AlwaysGreenSummary();
34 }

◆ execute()

dqm_core::Result * dqm_algorithms::summary::AlwaysGreenSummary::execute ( const std::string &  ,
const dqm_core::Result result,
const dqm_core::ParametersMap &   
)

Definition at line 37 of file AlwaysGreenSummary.cxx.

40 {
41 
42  dqm_core::Result *newresult = new dqm_core::Result();
43  newresult->status_=dqm_core::Result::Green;
44  return newresult;
45 
46 }

The documentation for this struct was generated from the following files:
instance
std::map< std::string, double > instance
Definition: Run_To_Get_Tags.h:8
Result
ICscStripFitter::Result Result
Definition: CalibCscStripFitter.cxx:13
python.handimod.Green
int Green
Definition: handimod.py:524
dqm_algorithms::summary::AlwaysGreenSummary::AlwaysGreenSummary
AlwaysGreenSummary()
Definition: AlwaysGreenSummary.cxx:21