ATLAS Offline Software
Loading...
Searching...
No Matches
RootFitGraph.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
8
9#ifndef DQM_ALGORITHMS_ROOTFITGRAPH_H
10#define DQM_ALGORITHMS_ROOTFITGRAPH_H
11
13
14#include <dqm_core/Algorithm.h>
15#include <string>
16#include <memory>
17#include <iosfwd>
18
19class TF1;
20
21namespace dqm_algorithms
22{
23 struct ATLAS_NOT_THREAD_SAFE RootFitGraph : public dqm_core::Algorithm
24 // ^ fit of constant graph
25 {
26 RootFitGraph( const std::string & name );
27
30 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
31 using dqm_core::Algorithm::printDescription;
32 void printDescription(std::ostream& out);
33 private:
34 std::string m_name;
35 std::unique_ptr<TF1> m_func;
36 };
37}
38
39#endif // DQM_ALGORITHMS_ROOTFITGRAPH_H
Define macros for attributes used to control the static checker.
#define ATLAS_NOT_THREAD_SAFE
getNoisyStrip() Find noisy strips from hitmaps and write out into xml/db formats
std::unique_ptr< TF1 > m_func
void printDescription(std::ostream &out)
RootFitGraph(const std::string &name)
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)