ATLAS Offline Software
Loading...
Searching...
No Matches
PassInput.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_PASSINPUT_H
10#define DQM_ALGORITHMS_PASSINPUT_H
11
12#include <dqm_core/Algorithm.h>
13#include <iosfwd>
14
15namespace dqm_algorithms
16{
17 struct PassInput : public dqm_core::Algorithm
18 {
19 PassInput();
20
21 ~PassInput();
22
23 //overwrites virtual functions
24 PassInput * clone( );
25 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
26 using dqm_core::Algorithm::printDescription;
27 void printDescription(std::ostream& out);
28 };
29}
30
31#endif // DQM_ALGORITHMS_PASSINPUT_H
void printDescription(std::ostream &out)
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
Definition PassInput.cxx:43