ATLAS Offline Software
BasicHistoCheck.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
9 #ifndef DQM_ALGORITHMS_BASICHISTOCHECK_H
10 #define DQM_ALGORITHMS_BASICHISTOCHECK_H
11 
12 #include <dqm_core/Algorithm.h>
13 #include <string>
14 #include <iosfwd>
15 
16 namespace dqm_algorithms
17 {
19  {
20  BasicHistoCheck(const std::string & name);
21 
22  //overwrites virtual functions
24  dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
25  using dqm_core::Algorithm::printDescription;
26  void printDescription(std::ostream& out);
27 
28  private:
29  std::string m_name;
30  };
31 }
32 
33 #endif // DQM_ALGORITHMS_BASICHISTOCHECK_H
dqm_algorithms::BasicHistoCheck::BasicHistoCheck
BasicHistoCheck(const std::string &name)
Definition: BasicHistoCheck.cxx:31
dqm_algorithms::BasicHistoCheck
Definition: BasicHistoCheck.h:19
python.FakeAthena.Algorithm
def Algorithm(name)
Definition: FakeAthena.py:41
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
Result
ICscStripFitter::Result Result
Definition: CalibCscStripFitter.cxx:13
dqm_algorithms::BasicHistoCheck::clone
BasicHistoCheck * clone()
Definition: BasicHistoCheck.cxx:38
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
dqm_algorithms::BasicHistoCheck::printDescription
void printDescription(std::ostream &out)
Definition: BasicHistoCheck.cxx:219
dqm_algorithms
Definition: AddReference.h:17
dqm_algorithms::BasicHistoCheck::m_name
std::string m_name
Definition: BasicHistoCheck.h:29
dqm_algorithms::BasicHistoCheck::execute
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
Definition: BasicHistoCheck.cxx:46