ATLAS Offline Software
SideBand.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_SIDEBAND_H
10 #define DQM_ALGORITHMS_SIDEBAND_H
11 
12 
13 #include <dqm_core/Algorithm.h>
14 #include <string>
15 #include <iosfwd>
16 
17 namespace dqm_algorithms
18 {
40  {
41  public:
42  SideBand(const std::string & name );
43  virtual SideBand* clone();
44  virtual dqm_core::Result* execute(const std::string &,
45  const TObject & obj,
46  const dqm_core::AlgorithmConfig & conf );
47  virtual ~SideBand() {};
48  using dqm_core::Algorithm::printDescription;
49  void printDescription(std::ostream& out);
50  private:
51  std::string m_name;
52  };
53 
54 }
55 
56 #endif // DQM_ALGORITHMS_SIDEBAND_H
dqm_algorithms::SideBand::m_name
std::string m_name
Definition: SideBand.h:51
dqm_algorithms::SideBand
Definition: SideBand.h:40
dqm_algorithms::SideBand::SideBand
SideBand(const std::string &name)
Definition: SideBand.cxx:26
python.FakeAthena.Algorithm
def Algorithm(name)
Definition: FakeAthena.py:41
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
dqm_algorithms::SideBand::~SideBand
virtual ~SideBand()
Definition: SideBand.h:47
python.ConfigurableDb.conf
def conf
Definition: ConfigurableDb.py:282
Result
ICscStripFitter::Result Result
Definition: CalibCscStripFitter.cxx:13
dqm_algorithms::SideBand::printDescription
void printDescription(std::ostream &out)
Definition: SideBand.cxx:132
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
dqm_algorithms
Definition: AddReference.h:17
python.PyAthena.obj
obj
Definition: PyAthena.py:135
dqm_algorithms::SideBand::execute
virtual dqm_core::Result * execute(const std::string &, const TObject &obj, const dqm_core::AlgorithmConfig &conf)
Definition: SideBand.cxx:34
dqm_algorithms::SideBand::clone
virtual SideBand * clone()
Definition: SideBand.cxx:30