ATLAS Offline Software
Loading...
Searching...
No Matches
RootFitTEff.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
10#ifndef DQM_ALGORITHMS_ROOTFITTEFF_H
11#define DQM_ALGORITHMS_ROOTFITTEFF_H
12
14
15#include <dqm_core/Algorithm.h>
16#include <string>
17#include <memory>
18#include <iosfwd>
19
20class TF1;
21
22namespace dqm_algorithms
23{
24 struct ATLAS_NOT_THREAD_SAFE RootFitTEff : public dqm_core::Algorithm
25 // ^ fit of constant graph
26 {
27 RootFitTEff( const std::string & name );
28
30 RootFitTEff * clone( );
31 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
32 using dqm_core::Algorithm::printDescription;
33 void printDescription(std::ostream& out);
34 private:
35 std::string m_name;
36 std::unique_ptr<TF1> m_func;
37 };
38}
39
40#endif // DQM_ALGORITHMS_ROOTFITTEFF_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
void printDescription(std::ostream &out)
std::unique_ptr< TF1 > m_func
Definition RootFitTEff.h:36
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
RootFitTEff(const std::string &name)