Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Histos.fhh
Go to the documentation of this file.
1 ///
2 /// @file Histos.fhh
3 /// @brief Forward declarations for histogram manager class
4 ///
5 
6 //**** This file is a part of the HAMMER library
7 //**** Copyright (C) 2016 - 2020 The HAMMER Collaboration
8 //**** HAMMER is licensed under version 3 of the GPL; see COPYING for details
9 //**** Please note the MCnet academic guidelines; see GUIDELINES for details
10 
11 // -*- C++ -*-
12 #ifndef HAMMER_HISTOS_FHH
13 #define HAMMER_HISTOS_FHH
14 
15 #include <map>
16 #include <string>
17 
18 namespace Hammer {
19 
20  template <typename T>
21  using HistoNameDict = std::map<std::string, T>;
22 
23  class Histos;
24 
25 } // namespace Hammer
26 
27 #endif
Hammer histogram manager class.
Definition: Histos.hh:43
std::map< std::string, T > HistoNameDict
Definition: Histos.fhh:21