Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef EVF_UTILITIES_AUXILIARYMAKERS_H
#define EVF_UTILITIES_AUXILIARYMAKERS_H

#include "DataFormats/Provenance/interface/EventAuxiliary.h"
#include "DataFormats/TCDS/interface/TCDSRaw.h"

namespace evf {
  namespace evtn {
    edm::EventAuxiliary makeEventAuxiliary(const tcds::Raw_v1*,
                                           unsigned int runNumber,
                                           unsigned int lumiSection,
                                           bool isRealData,
                                           const edm::EventAuxiliary::ExperimentType&,
                                           const std::string& processGUID,
                                           bool verifyLumiSection,
                                           bool suppressWarning);
  }
}  // namespace evf
#endif