PODIO v00-16-03
An Event-Data-Model Toolkit for High Energy Physics Experiments
|
#include "TFile.h"
#include "TTree.h"
#include <iostream>
#include <string>
#include <vector>
Go to the source code of this file.
Typedefs | |
using | StringVec = std::vector< std::string > |
Functions | |
bool | verifyTree (TTree *tree, int expectedEntries, const StringVec &expectedBranches) |
void | verifyBMFile (const char *fileName, const StringVec &setupBranches, const StringVec &eventBranches, int expectedEvents=nExpectedEvents) |
int | main (int, char *argv[]) |
Variables | |
constexpr int | nExpectedEvents = 2000 |
using StringVec = std::vector<std::string> |
Definition at line 9 of file check_benchmark_outputs.cpp.
int main | ( | int | , |
char * | argv[] | ||
) |
We can't really make any checks on the actual execution times, but we can at least verify that the expected timing points are here.
Definition at line 68 of file check_benchmark_outputs.cpp.
void verifyBMFile | ( | const char * | fileName, |
const StringVec & | setupBranches, | ||
const StringVec & | eventBranches, | ||
int | expectedEvents = nExpectedEvents |
||
) |
Definition at line 43 of file check_benchmark_outputs.cpp.
Referenced by main().
bool verifyTree | ( | TTree * | tree, |
int | expectedEntries, | ||
const StringVec & | expectedBranches | ||
) |
Definition at line 11 of file check_benchmark_outputs.cpp.
Referenced by verifyBMFile().
|
constexpr |
Definition at line 8 of file check_benchmark_outputs.cpp.