Belle II Software  release-05-01-25
MakeROOTCompatible.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Thomas Keck *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <string>
14 #include <map>
15 
16 namespace Belle2 {
25  std::string makeROOTCompatible(std::string str);
26 
30  std::string invertMakeROOTCompatible(std::string str);
31 
35  std::map<std::string, std::string> getSubstitutionMap();
36 
38 }
Belle2::invertMakeROOTCompatible
std::string invertMakeROOTCompatible(std::string str)
Invert makeROOTCompatible operation.
Definition: MakeROOTCompatible.cc:89
Belle2::makeROOTCompatible
std::string makeROOTCompatible(std::string str)
Remove special characters that ROOT dislikes in branch names, e.g.
Definition: MakeROOTCompatible.cc:74
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::getSubstitutionMap
std::map< std::string, std::string > getSubstitutionMap()
Substituation map for makeROOTCompatible.
Definition: MakeROOTCompatible.cc:32