DESY Hbb Analysis Framework
Ntuplizer/interface/Utils.h
Go to the documentation of this file.
1 #ifndef Analysis_Ntuplizer_Utils_h
2 #define Analysis_Ntuplizer_Utils_h 1
3 
4 // -*- C++ -*-
5 //
6 // Package: Analysis/Ntuplizer
7 // Class: Utils
8 //
16 //
17 // Original Author: Roberval Walsh Bastos Rangel
18 // Created: Mon, 20 Oct 2014 14:24:08 GMT
19 //
20 //
21 
22 // system include files
23 #include <string>
24 //
25 // user include files
26 //
27 // class declaration
28 //
29 
30 namespace analysis {
31  namespace ntuple {
32 
33  struct TitleIndex {
34  std::string title;
35  unsigned int index;
36  };
37  struct TitleAlias {
38  std::string title;
39  std::string alias;
40  };
41  }
42 }
43 
44 #endif // Analysis_Ntuplizer_Utils_h