The Gaudi Framework  master (37c0b60a)
HistoParsers.h
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2024 CERN for the benefit of the LHCb and ATLAS collaborations *
3 * *
4 * This software is distributed under the terms of the Apache version 2 licence, *
5 * copied verbatim in the file "LICENSE". *
6 * *
7 * In applying this licence, CERN does not waive the privileges and immunities *
8 * granted to it by virtue of its status as an Intergovernmental Organization *
9 * or submit itself to any jurisdiction. *
10 \***********************************************************************************/
11 #ifndef GAUDIUTILS_HISTOPARSERS_H
12 #define GAUDIUTILS_HISTOPARSERS_H 1
13 // =============================================================================
14 // Include files
15 // =============================================================================
16 // GaudiKernel
17 // =============================================================================
18 #include <GaudiKernel/StatusCode.h>
19 // =============================================================================
20 // forward declarations
21 // =============================================================================
22 // AIDA
23 // =============================================================================
24 namespace AIDA {
25  class IHistogram1D; // AIDA
26  class IHistogram2D; // AIDA
27  class IHistogram3D; // AIDA
28 } // namespace AIDA
29 // =============================================================================
30 // ROOT
31 // =============================================================================
32 class TH1D; // ROOT
33 class TH2D; // ROOT
34 class TH3D; // ROOT
35 class TH1F; // ROOT
36 class TH2F; // ROOT
37 class TH3F; // ROOT
38 // =============================================================================
39 namespace Gaudi {
40  // ===========================================================================
41  namespace Parsers {
42  // =========================================================================
48  GAUDI_API StatusCode parse( TH1D& result, std::string_view input );
49  // =========================================================================
55  GAUDI_API StatusCode parse( TH2D& result, std::string_view input );
56  // =========================================================================
62  GAUDI_API StatusCode parse( TH3D& result, std::string_view input );
63  // =========================================================================
69  GAUDI_API StatusCode parse( TH1F& result, std::string_view input );
70  // =========================================================================
76  GAUDI_API StatusCode parse( TH2F& result, std::string_view input );
77  // =========================================================================
83  GAUDI_API StatusCode parse( TH3F& result, std::string_view input );
84  // =========================================================================
90  GAUDI_API StatusCode parse( AIDA::IHistogram1D& result, std::string_view input );
91  // =========================================================================
97  GAUDI_API StatusCode parse( AIDA::IHistogram2D& result, std::string_view input );
98  // =========================================================================
104  GAUDI_API StatusCode parse( AIDA::IHistogram3D& result, std::string_view input );
105  // =========================================================================
111  GAUDI_API StatusCode parse( TH1D*& result, std::string_view input );
112  // =========================================================================
118  GAUDI_API StatusCode parse( TH2D*& result, std::string_view input );
119  // =========================================================================
125  GAUDI_API StatusCode parse( TH3D*& result, std::string_view input );
126  // =========================================================================
127  } // namespace Parsers
128  // ===========================================================================
129 } // end of namespace Gaudi
130 // =============================================================================
131 // The END
132 // =============================================================================
133 #endif // GAUDIUTILS_HISTOPARSERS_H
AIDA
GaudiKernel.
Definition: Annotation.h:22
Gaudi::Parsers::parse
StatusCode parse(GaudiUtils::HashMap< K, V > &result, std::string_view input)
Basic parser for the types of HashMap used in DODBasicMapper.
Definition: DODBasicMapper.cpp:21
StatusCode.h
StatusCode
Definition: StatusCode.h:65
Gaudi
This file provides a Grammar for the type Gaudi::Accumulators::Axis It allows to use that type from p...
Definition: __init__.py:1
GAUDI_API
#define GAUDI_API
Definition: Kernel.h:81