utils.h
Go to the documentation of this file.
1 #pragma once
2 #include <string>
3 
4 namespace VLN {
5 
6 enum class Flavor : int { Any = 0, NuMu = 14 };
7 enum class Format { CSV };
8 
9 Flavor parseFlavor(const std::string &flavStr);
10 Format parseFormat(const std::string &formatStr);
11 
13  const std::string &path, const std::string &root, Format format
14 );
15 
16 }
Format
Definition: utils.h:7
Format parseFormat(const std::string &formatStr)
Definition: utils.cxx:24
std::string string
Definition: nybbler.cc:12
static bool format(QChar::Decomposition tag, QString &str, int index, int len)
Definition: qstring.cpp:11496
Flavor
Definition: utils.h:6
std::string convertFilename(const std::string &path, const std::string &root, Format format)
Definition: utils.cxx:35
Definition: utils.cxx:6
Flavor parseFlavor(const std::string &flavStr)
Definition: utils.cxx:8