ATLAS Offline Software
Loading...
Searching...
No Matches
DivideReference.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
9#ifndef DQM_ALGORITHMS_DIVIDEREFERENCE_H
10#define DQM_ALGORITHMS_DIVIDEREFERENCE_H
11
12#include <dqm_core/Algorithm.h>
13#include <string>
14#include <iosfwd>
15
16namespace dqm_algorithms
17{
18 struct DivideReference : public dqm_core::Algorithm
19 {
20 DivideReference(const std::string& name );
22 using dqm_core::Algorithm::printDescription;
23 void printDescription(std::ostream& out);
24 dqm_core::Result* execute(const std::string& , const TObject& , const dqm_core::AlgorithmConfig& );
25 private:
26 std::string m_name;
27 };
28}
29
30#endif // DQM_ALGORITHMS_DIVIDEREFERENCE_H
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
void printDescription(std::ostream &out)
DivideReference(const std::string &name)