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

#include <AlwaysUndefinedSummary.h>

Inheritance diagram for dqm_algorithms::summary::AlwaysUndefinedSummary:
Collaboration diagram for dqm_algorithms::summary::AlwaysUndefinedSummary:

Public Member Functions

 AlwaysUndefinedSummary ()
 
 ~AlwaysUndefinedSummary ()
 
AlwaysUndefinedSummaryclone ()
 
dqm_core::Resultexecute (const std::string &, const dqm_core::Result &result, const dqm_core::ParametersMap &)
 

Detailed Description

Definition at line 19 of file AlwaysUndefinedSummary.h.

Constructor & Destructor Documentation

◆ AlwaysUndefinedSummary()

dqm_algorithms::summary::AlwaysUndefinedSummary::AlwaysUndefinedSummary ( )

Definition at line 21 of file AlwaysUndefinedSummary.cxx.

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

◆ ~AlwaysUndefinedSummary()

dqm_algorithms::summary::AlwaysUndefinedSummary::~AlwaysUndefinedSummary ( )

Definition at line 26 of file AlwaysUndefinedSummary.cxx.

27 {
28 }

Member Function Documentation

◆ clone()

dqm_algorithms::summary::AlwaysUndefinedSummary * dqm_algorithms::summary::AlwaysUndefinedSummary::clone ( )

Definition at line 31 of file AlwaysUndefinedSummary.cxx.

32 {
33  return new AlwaysUndefinedSummary();
34 }

◆ execute()

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

Definition at line 37 of file AlwaysUndefinedSummary.cxx.

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

The documentation for this struct was generated from the following files:
Undefined
@ Undefined
Definition: MaterialTypes.h:8
instance
std::map< std::string, double > instance
Definition: Run_To_Get_Tags.h:8
Result
ICscStripFitter::Result Result
Definition: CalibCscStripFitter.cxx:13
dqm_algorithms::summary::AlwaysUndefinedSummary::AlwaysUndefinedSummary
AlwaysUndefinedSummary()
Definition: AlwaysUndefinedSummary.cxx:21