ATLAS Offline Software
Loading...
Searching...
No Matches
L1Calo_BinsDiffFromStripMedian.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5/* L1Calo_BinsDiffFromStripMedian.h
6 Author: will buttinger
7 Email: will@cern.ch
8*/
9
10#ifndef L1Calo_BinsDiffFromStripMedian_H
11#define L1Calo_BinsDiffFromStripMedian_H
12
13#include <dqm_core/Algorithm.h>
14#include <vector>
15#include <iosfwd>
16#include <string>
17
18
19namespace dqm_algorithms
20{
21 struct L1Calo_BinsDiffFromStripMedian : public dqm_core::Algorithm
22 {
26
27 dqm_core::Result* execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
28
29 using dqm_core::Algorithm::printDescription;
30 void printDescription(std::ostream& out);
31
32 class bin{
33 public:
34 int m_ix{};
35 int m_iy{};
36 double m_value{};
38 } ;
39
40 };
41}
42
43
44#endif // L1Calo_BinsDiffFromStripMedian_H
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)