CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MillePedeFileExtractor.cc
Go to the documentation of this file.
1 // Original Author: Broen van Besien
2 // Created: Mon, 23 Mar 2015 14:56:15 GMT
3 
6 
7 #include <zlib.h>
8 
13 
15  : outputDir_(iConfig.getParameter<std::string>("fileDir")),
16  outputFileName_(iConfig.getParameter<std::string>("outputBinaryFile")),
17  maxNumberOfBinaries_(iConfig.getParameter<int>("maxNumberOfBinaries")) {
18  auto fileBlobInputTag = iConfig.getParameter<edm::InputTag>("fileBlobInputTag");
19  fileBlobToken_ = consumes<FileBlobCollection, edm::BranchType::InLumi>(fileBlobInputTag);
20  if (hasBinaryNumberLimit()) {
21  edm::LogInfo("MillePedeFileActions") << "Limiting the number of extracted binary files to " << maxNumberOfBinaries_;
22  }
23 }
24 
26 
28  if (enoughBinaries())
29  return;
30 
31  // Getting our hands on the vector of FileBlobs
32  edm::Handle<FileBlobCollection> fileBlobCollection;
33  iLumi.getByToken(fileBlobToken_, fileBlobCollection);
34  if (fileBlobCollection.isValid()) {
35  // Logging the amount of FileBlobs in the vector
36  edm::LogInfo("MillePedeFileActions") << "Root file contains " << fileBlobCollection->size() << " FileBlob(s).";
37  // Loop over the FileBlobs in the vector, and write them to files:
38  for (const auto& blob : *fileBlobCollection) {
39  if (enoughBinaries())
40  break;
41  // We format the filename with a number, starting from 0 to the size of
42  // our vector.
43  // For this to work, the outputBinaryFile config parameter must contain a
44  // formatting directive for a number, like %04d.
45  char theNumberedOutputFileName[200];
46  sprintf(theNumberedOutputFileName, outputFileName_.c_str(), nBinaries_);
47 
48  // Log the filename to which we will write...
49  edm::LogInfo("MillePedeFileActions")
50  << "Writing FileBlob file to file " << outputDir_ + theNumberedOutputFileName << ".";
51 
52  // ...and perform the writing operation.
53  writeGzipped(blob, outputDir_ + theNumberedOutputFileName);
54 
55  ++nBinaries_;
56  }
57  } else {
58  edm::LogError("MillePedeFileActions") << "Error: The root file does not contain any vector of FileBlob.";
59  }
60 }
61 
63  // - use zlib directly to avoid boost dependencies for this simple task
64  // - zlib and gzip compression differ -> get uncompressed blob first
65  auto uncompressedBlob = blob.getUncompressedBlob();
66  gzFile fp = gzopen(fileName.c_str(), "wb");
67  if (fp == nullptr) {
68  edm::LogError("MillePedeFileActions") << "Problem while opening gzipped file '" << fileName << "'.";
69  }
70  auto nBytes = gzwrite(fp, &uncompressedBlob->front(), uncompressedBlob->size());
71  if (nBytes == 0 || nBytes != static_cast<decltype(nBytes)>(uncompressedBlob->size())) {
72  edm::LogError("MillePedeFileActions") << "Problem while writing FileBlob to gzipped file '" << fileName << "'.";
73  }
74  auto zerr = gzclose(fp);
75  if (zerr != 0) {
76  edm::LogError("MillePedeFileActions") << "Problem while closing gzipped file '" << fileName << "'.";
77  }
78 }
79 
80 // Manage the parameters for the module:
81 // (Note that this will autogenerate the _cfi.py file.)
84 
85  desc.add<std::string>("fileDir", "")
86  ->setComment(
87  "Keep the fileDir empty if you want to write to the current "
88  "directory.");
89 
90  desc.add<std::string>("outputBinaryFile", "milleBinary%04d.dat")
91  ->setComment(
92  "Base filename of the files that will be created. This must "
93  "contain "
94  "a placeholder for an index number in the standard C formatting "
95  "style, like %04d.");
96 
97  desc.add<edm::InputTag>("fileBlobInputTag", edm::InputTag("millePedeFileConverter", ""))
98  ->setComment(
99  "Name of the module that should have generated the blob in the "
100  "root file. Make sure you overwrite this, if you have changed "
101  "this is the configuration of the MillePedeFileConverter.");
102 
103  desc.add<int>("maxNumberOfBinaries", 1000)
104  ->setComment(
105  "Number of binaries to be extracted from the input files. "
106  "Use a negative value to apply no limit.");
107 
108  descriptions.add("millePedeFileExtractor", desc);
109  descriptions.setComment(
110  "This is the generic cfi file for the "
111  "MillePedeFileExtractor");
112 }
edm::EDGetTokenT< FileBlobCollection > fileBlobToken_
const std::string outputFileName_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
void zerr(int)
MillePedeFileExtractor(const edm::ParameterSet &)
Log< level::Error, false > LogError
void endLuminosityBlock(const edm::LuminosityBlock &, const edm::EventSetup &) override
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
bool isValid() const
Definition: HandleBase.h:70
Log< level::Info, false > LogInfo
void setComment(std::string const &value)
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::unique_ptr< std::vector< unsigned char > > getUncompressedBlob() const
i didn&#39;t want to do two copies ... hope this works.
Definition: FileBlob.cc:75
static void writeGzipped(const FileBlob &, const std::string &)