ATLAS Offline Software
Loading...
Searching...
No Matches
GraphTest.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
8#ifndef DQM_ALGORITHMS_GRAPHTEST_H
9#define DQM_ALGORITHMS_GRAPHTEST_H
10
11#include <dqm_core/Algorithm.h>
12#include <string>
13#include <iosfwd>
14
15namespace dqm_algorithms
16{
50 class GraphTest : public dqm_core::Algorithm
51 {
52 public:
53 GraphTest();
54 virtual GraphTest* clone();
55 virtual dqm_core::Result* execute(const std::string &,
56 const TObject & obj,
57 const dqm_core::AlgorithmConfig & conf );
58 virtual ~GraphTest();
59 using dqm_core::Algorithm::printDescription;
60 void printDescription(std::ostream& out);
61 };
62}
63
64#endif // DQM_ALGORITHMS_GRAPHTEST_H
virtual dqm_core::Result * execute(const std::string &, const TObject &obj, const dqm_core::AlgorithmConfig &conf)
Definition GraphTest.cxx:34
void printDescription(std::ostream &out)
virtual GraphTest * clone()
Definition GraphTest.cxx:30