Project
Loading...
Searching...
No Matches
RawWriterSpec.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
16
18#include <fstream>
19#include <filesystem>
20#include <gsl/gsl>
24#include "Framework/Logger.h"
25#include "Framework/Output.h"
26#include "Framework/Task.h"
30#include "MIDRaw/Encoder.h"
31#include "MIDRaw/FEEIdConfig.h"
34
35namespace of = o2::framework;
36
37namespace o2
38{
39namespace mid
40{
42{
43 public:
45 {
46 auto dirname = ic.options().get<std::string>("mid-raw-outdir");
47 auto fileFor = ic.options().get<std::string>("file-for");
48 if (!std::filesystem::exists(dirname)) {
49 if (!std::filesystem::create_directories(dirname)) {
50 LOG(fatal) << "could not create output directory " << dirname;
51 } else {
52 LOG(info) << "created output directory " << dirname;
53 }
54 }
55
56 mEncoder.init(dirname.c_str(), fileFor.c_str());
57
58 std::string inputGRP = o2::base::NameConf::getGRPFileName();
59 std::unique_ptr<o2::parameters::GRPObject> grp{o2::parameters::GRPObject::loadFrom(inputGRP)};
60 mEncoder.getWriter().setContinuousReadout(grp->isDetContinuousReadOut(o2::detectors::DetID::MID)); // must be set explicitly
61
62 auto stop = [this]() {
63 mEncoder.finalize();
64 };
65 ic.services().get<of::CallbackService>().set<of::CallbackService::Id::Stop>(stop);
66
67 // Write basic config files to be used with raw data reader workflow
68 mEncoder.getWriter().writeConfFile("MID", "RAWDATA", o2::utils::Str::concat_string(dirname, '/', "MIDraw.cfg"));
69 }
70
72 {
73 auto msg = pc.inputs().get("mid_data_mc");
74 gsl::span<const ColumnData> data = of::DataRefUtils::as<const ColumnData>(msg);
75
76 auto msgROF = pc.inputs().get("mid_data_mc_rof");
77 gsl::span<const ROFRecord> rofRecords = of::DataRefUtils::as<const ROFRecord>(msgROF);
78
79 for (auto& rofRecord : rofRecords) {
80 auto eventData = data.subspan(rofRecord.firstEntry, rofRecord.nEntries);
81 mEncoder.process(eventData, rofRecord.interactionRecord, rofRecord.eventType);
82 }
83 }
84
85 private:
86 Encoder mEncoder{};
87};
88
90{
91 std::vector<of::InputSpec> inputSpecs{of::InputSpec{"mid_data_mc", header::gDataOriginMID, "DATAMC"}, of::InputSpec{"mid_data_mc_rof", header::gDataOriginMID, "DATAMCROF"}};
92
94 "MIDRawWriter",
95 inputSpecs,
97 of::AlgorithmSpec{of::adaptFromTask<o2::mid::RawWriterDeviceDPL>()},
99 {"mid-raw-outdir", of::VariantType::String, ".", {"Raw file output directory"}},
100 {"file-for", of::VariantType::String, "all", {"single file per: all,flp,cruendpoint,link"}},
101 {"mid-raw-header-offset", of::VariantType::Bool, false, {"Header offset in bytes"}}}};
102}
103} // namespace mid
104} // namespace o2
Strip pattern (aka digits)
MID raw data encoder.
Hardware Id to FeeId mapper.
Header of the General Run Parameters object.
Digits to raw converter spec for MID.
Definition of the MID event record.
Definition of the Names Generator class.
static std::string getGRPFileName(const std::string_view prefix=STANDARDSIMPREFIX)
Definition NameConf.cxx:58
static constexpr ID MID
Definition DetID.h:73
ServiceRegistryRef services()
Definition InitContext.h:34
ConfigParamRegistry const & options()
Definition InitContext.h:33
decltype(auto) get(R binding, int part=0) const
InputRecord & inputs()
The inputs associated with this processing context.
auto & getWriter()
Definition Encoder.h:51
void finalize(bool closeFile=true)
Definition Encoder.cxx:131
void init(std::string_view outDir=".", std::string_view fileFor="all", int verbosity=0, std::vector< ROBoardConfig > configurations=makeDefaultROBoardConfig())
Definition Encoder.cxx:30
void process(gsl::span< const ColumnData > data, InteractionRecord ir, EventType eventType=EventType::Standard)
Definition Encoder.cxx:150
void init(o2::framework::InitContext &ic)
void run(o2::framework::ProcessingContext &pc)
static GRPObject * loadFrom(const std::string &grpFileName="")
GLboolean * data
Definition glcorearb.h:298
constexpr o2::header::DataOrigin gDataOriginMID
Definition DataHeader.h:573
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< ConfigParamSpec > Options
std::vector< OutputSpec > Outputs
framework::DataProcessorSpec getRawWriterSpec()
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
static std::string concat_string(Ts const &... ts)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
uint64_t const void const *restrict const msg
Definition x9.h:153