#include <iostream>
#include <string>
#include <unistd.h>
#include "EventStorage/pickDataReader.h"
#include "FileMetaData.h"
#include "CxxUtils/checker_macros.h"
Go to the source code of this file.
◆ ATLAS_NOT_THREAD_SAFE()
int main ATLAS_NOT_THREAD_SAFE |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 103 of file BSFilePeeker.cxx.
109 while ((
c = getopt (
argc,
argv,
"vk")) != -1) {
118 std::cerr <<
"Unkown command line option" << std::endl;
124 const int nfiles=
argc-optind;
126 std::cerr <<
"Expected at least one file name as parameter" << std::endl;
131 std::vector<FileMetaData>
output;
133 for (
int iFile=optind;iFile<
argc;++iFile) {
139 output.push_back(bsfp.get());
144 for (
const auto& o :
output) o.keyValueDump();
147 for (
const auto& o :
output) o.dump();