ATLAS Offline Software
Loading...
Searching...
No Matches
HLTMETStatus.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
5/* Algorithm: dqm_algorithms::HLTMETStatus
6 * Author : Venkatesh Kaushik <venkat.kaushik@cern.ch>
7 * Date : Feb 21 2010
8 */
9
10
11#ifndef DQM_ALGORITHMS_HLTMETSTATUS_H
12#define DQM_ALGORITHMS_HLTMETSTATUS_H
13
14#include <dqm_core/Algorithm.h>
15#include <string>
16#include <iosfwd>
17
18namespace dqm_algorithms
19{
20 struct HLTMETStatus : public dqm_core::Algorithm
21 {
23
24 //overwrites virtual functions
26 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
27 using dqm_core::Algorithm::printDescription;
28 void printDescription(std::ostream& out);
29
30 private:
31 std::string m_name;
32 };
33}
34
35#endif // DQM_ALGORITHMS_HLTMETSTATUS_H
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
void printDescription(std::ostream &out)