ATLAS Offline Software
AlwaysGreenSummary.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
9 #include <iostream>
10 
11 #include <dqm_core/AlgorithmManager.h>
12 
14 #include <dqm_core/Result.h>
15 #include <dqm_core/Parameter.h>
16 
17 using namespace std;
18 
20 
22 {
23  dqm_core::AlgorithmManager::instance().registerSummaryMaker( "AlwaysGreenSummary", this );
24 }
25 
27 {
28 }
29 
32 {
33  return new AlwaysGreenSummary();
34 }
35 
38  const dqm_core::Result & ,
39  const dqm_core::ParametersMap &)
40 {
41 
42  dqm_core::Result *newresult = new dqm_core::Result();
43  newresult->status_=dqm_core::Result::Green;
44  return newresult;
45 
46 }
AlwaysGreenSummary.h
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
Definition: AlwaysGreenSummary.h:20
dqm_algorithms::summary::AlwaysGreenSummary::~AlwaysGreenSummary
~AlwaysGreenSummary()
Definition: AlwaysGreenSummary.cxx:26
dqm_algorithms::summary::AlwaysGreenSummary::execute
dqm_core::Result * execute(const std::string &, const dqm_core::Result &result, const dqm_core::ParametersMap &)
Definition: AlwaysGreenSummary.cxx:37
dqm_algorithms::summary::AlwaysGreenSummary::clone
AlwaysGreenSummary * clone()
Definition: AlwaysGreenSummary.cxx:31
dqm_algorithms::summary::AlwaysGreenSummary::AlwaysGreenSummary
AlwaysGreenSummary()
Definition: AlwaysGreenSummary.cxx:21