star-travex
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
VxEff.h
Go to the documentation of this file.
1 #ifndef VxEff_h
2 #define VxEff_h
3 
4 #include <map>
5 #include <string>
6 #include <vector>
7 
8 
9 // Because this file is processed by rootcint we cannot use nice C++11
10 // initializatoin here, instead need to use extern
11 extern const std::map<std::string, std::string> myDefaultVertexFiles;
12 
13 int VxEff(const std::vector<std::string> &vtx_file_keys, const std::vector<std::string> &vtx_file_names);
14 int VxEff(const std::map<std::string, std::string> & vtx_file_names=myDefaultVertexFiles);
15 
16 #endif
const std::map< std::string, std::string > myDefaultVertexFiles
Definition: VxEff.C:19
int VxEff(const std::vector< std::string > &vtx_file_keys, const std::vector< std::string > &vtx_file_names)
Definition: VxEff.C:27