ATLAS Offline Software
Loading...
Searching...
No Matches
BinsOutOfRange.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
5/* BinsOutOfRange.h
6// Author: FENG TIAN (columbia university)
7 Email: Feng.Tian@cern.ch
8*/
9
10#ifndef BinsOutOfRange_H
11#define BinsOutOfRange_H
12
13#include <dqm_core/Algorithm.h>
14#include <iosfwd>
15#include <string>
16class bin3;
17namespace dqm_algorithms
18{
19 struct BinsOutOfRange: public dqm_core::Algorithm
20 {
22
24
25 //overwrites virtual functions
27 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
28 using dqm_core::Algorithm::printDescription;
29 void printDescription(std::ostream& out);
30 };
31}
32
33class bin3{
34 public:
35 double m_eta{};
36 double m_phi{};
37 int m_ix{};
38 int m_iy{};
39 double m_value{};
40} ;
41
42
43#endif // BinsOutOfRange_H
double m_phi
double m_value
double m_eta
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
void printDescription(std::ostream &out)