ATLAS Offline Software
Loading...
Searching...
No Matches
WidthPlot.h
Go to the documentation of this file.
1/*
2Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef EGAMMAVALIDATION_WIDTHPLOTS_H
6#define EGAMMAVALIDATION_WIDTHPLOTS_H
7
8#include "IHistograms.h"
9
10#include "GaudiKernel/ITHistSvc.h"
11#include "GaudiKernel/SmartIF.h"
12
13namespace egammaMonitoring {
14
15 class WidthPlot {
16 public:
17
18 WidthPlot(std::string name, std::string folder, SmartIF<ITHistSvc> rootHistSvc);
20 StatusCode fill(IHistograms *input);
21
22 private:
23 std::string m_name;
24 std::string m_folder;
25 SmartIF<ITHistSvc> m_rootHistSvc;
26
27 };
28
29}
30
31#endif
32
33
WidthPlot(std::string name, std::string folder, SmartIF< ITHistSvc > rootHistSvc)
Definition WidthPlot.cxx:19
SmartIF< ITHistSvc > m_rootHistSvc
Definition WidthPlot.h:25
StatusCode fill(IHistograms *input)
Definition WidthPlot.cxx:24