ATLAS Offline Software
DataQuality/dqm_algorithms/dqm_algorithms/CorrelationYX.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_CORRELATIONYX_H
6 #define DQM_ALGORITHMS_CORRELATIONYX_H
7 
8 
9 
10 #include "dqm_core/Algorithm.h"
11 #include <string>
12 #include <iosfwd>
13 
14 namespace dqm_algorithms {
15 
17  public:
18 
19  CorrelationYX();
20 
21  virtual ~CorrelationYX();
22  virtual dqm_core::Algorithm* clone();
23  virtual dqm_core::Result* execute( const std::string& name, const TObject& object,
24  const dqm_core::AlgorithmConfig& config );
25  using dqm_core::Algorithm::printDescription;
26  virtual void printDescription(std::ostream& out);
27 
28  private:
29  std::string m_name;
30  };
31 
32 } //namespace dqm_algorithms
33 
34 #endif // DQM_ALGORITHMS_CORRELATIONYX_H
dqm_algorithms::CorrelationYX::CorrelationYX
CorrelationYX()
Definition: DataQuality/dqm_algorithms/src/CorrelationYX.cxx:33
python.FakeAthena.Algorithm
def Algorithm(name)
Definition: FakeAthena.py:41
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
dqm_algorithms::CorrelationYX::clone
virtual dqm_core::Algorithm * clone()
Definition: DataQuality/dqm_algorithms/src/CorrelationYX.cxx:48
config
Definition: PhysicsAnalysis/AnalysisCommon/AssociationUtils/python/config.py:1
dqm_algorithms::CorrelationYX::~CorrelationYX
virtual ~CorrelationYX()
Definition: DataQuality/dqm_algorithms/src/CorrelationYX.cxx:41
Result
ICscStripFitter::Result Result
Definition: CalibCscStripFitter.cxx:13
dqm_algorithms::CorrelationYX
Definition: DataQuality/dqm_algorithms/dqm_algorithms/CorrelationYX.h:16
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
dqm_algorithms::CorrelationYX::printDescription
virtual void printDescription(std::ostream &out)
Definition: DataQuality/dqm_algorithms/src/CorrelationYX.cxx:156
dqm_algorithms
Definition: AddReference.h:17
dqm_algorithms::CorrelationYX::execute
virtual dqm_core::Result * execute(const std::string &name, const TObject &object, const dqm_core::AlgorithmConfig &config)
Definition: DataQuality/dqm_algorithms/src/CorrelationYX.cxx:56
dqm_algorithms::CorrelationYX::m_name
std::string m_name
Definition: DataQuality/dqm_algorithms/dqm_algorithms/CorrelationYX.h:29