ATLAS Offline Software
Loading...
Searching...
No Matches
AlwaysUndefinedSummary.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
8
9#include <iostream>
10
11#include <dqm_core/AlgorithmManager.h>
12
14#include <dqm_core/Result.h>
15#include <dqm_core/Parameter.h>
16
17using namespace std;
18
20
22{
23 dqm_core::AlgorithmManager::instance().registerSummaryMaker( "AlwaysUndefinedSummary", this );
24}
25
29
35
36dqm_core::Result *
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::Undefined;
44 return newresult;
45
46}
static dqm_algorithms::BinContentComp myInstance
STL namespace.
dqm_core::Result * execute(const std::string &, const dqm_core::Result &result, const dqm_core::ParametersMap &)