ATLAS Offline Software
Loading...
Searching...
No Matches
MaximumBin.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#ifndef DQM_ALGORITHMS_MAXIMUMBIN_H
6#define DQM_ALGORITHMS_MAXIMUMBIN_H
7
8#include <dqm_core/Algorithm.h>
9#include <string>
10#include <iosfwd>
11
12namespace dqm_algorithms
13{
14 class MaximumBin : public dqm_core::Algorithm
15 {
16 public:
17 MaximumBin();
18
19 //overwrite virtual functions
20 MaximumBin * clone( );
21 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
22 using dqm_core::Algorithm::printDescription;
23 void printDescription(std::ostream& out);
24 };
25}
26
27#endif // DQM_ALGORITHMS_MAXIMUMBIN_H
void printDescription(std::ostream &out)
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)