Project
Loading...
Searching...
No Matches
tpc-calib-pad-raw.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
15//
16#include <fmt/format.h>
23#include "Framework/Logger.h"
27#include "DPLUtils/RawParser.h"
28#include "Headers/DataHeader.h"
32#include <vector>
33#include <string>
35#include "TPCBase/RDHUtils.h"
38
39using namespace o2::framework;
41
42const std::string DEFAULTINPUT = "A:TPC/RAWDATA";
43
44// customize the completion policy
45void customize(std::vector<o2::framework::CompletionPolicy>& policies)
46{
48 policies.push_back(CompletionPolicyHelpers::defineByName("calib-tpc-raw.*", CompletionPolicy::CompletionOp::Consume));
49}
50
51// we need to add workflow options before including Framework/runDataProcessing
52void customize(std::vector<ConfigParamSpec>& workflowOptions)
53{
54 std::string sectorDefault = "0-" + std::to_string(o2::tpc::Sector::MAXSECTOR - 1);
55 int defaultlanes = std::max(1u, std::thread::hardware_concurrency() / 2);
56
57 std::vector<ConfigParamSpec> options{
58 {"input-spec", VariantType::String, DEFAULTINPUT, {"selection string input specs"}},
59 {"publish-after-tfs", VariantType::UInt32, 0u, {"number of time frames after which to force publishing the objects"}},
60 {"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings (e.g.: 'TPCCalibPedestal.FirstTimeBin=10;...')"}},
61 {"configFile", VariantType::String, "", {"configuration file for configurable parameters"}},
62 {"calib-type", VariantType::String, "pedestal", {"Calibration type to run: pedestal, pulser, ce"}},
63 {"no-write-ccdb", VariantType::Bool, false, {"skip sending the calibration output to CCDB"}},
64 {"send-to-dcs-ccdb", VariantType::Bool, false, {"Send values to DCS DB"}},
65 {"lanes", VariantType::Int, defaultlanes, {"Number of parallel processing lanes."}},
66 {"sectors", VariantType::String, sectorDefault.c_str(), {"List of TPC sectors, comma separated ranges, e.g. 0-3,7,9-15"}},
67 };
68
69 std::swap(workflowOptions, options);
70}
71
73
75
77{
78 using namespace o2::tpc;
79
80 // set up configuration
81 o2::conf::ConfigurableParam::updateFromFile(config.options().get<std::string>("configFile"));
82 o2::conf::ConfigurableParam::updateFromString(config.options().get<std::string>("configKeyValues"));
83 o2::conf::ConfigurableParam::writeINI("o2tpccalibration_configuration.ini");
84
85 std::string inputSpec = config.options().get<std::string>("input-spec");
86 const auto skipCCDB = config.options().get<bool>("no-write-ccdb");
87 const auto sendToDCS = config.options().get<bool>("send-to-dcs-ccdb");
88 const auto publishAfterTFs = config.options().get<uint32_t>("publish-after-tfs");
89
90 const auto tpcsectors = o2::RangeTokenizer::tokenize<int>(config.options().get<std::string>("sectors"));
91 const auto nSectors = (uint32_t)tpcsectors.size();
92 auto nLanes = std::min((uint32_t)config.options().get<int>("lanes"), nSectors);
93 const auto sectorsPerLane = nSectors / nLanes + ((nSectors % nLanes) != 0);
94
95 CDBType rawType;
96 try {
97 rawType = CalibRawTypeMap.at(config.options().get<std::string>("calib-type"));
98 if ((rawType == CDBType::CalCE) && (inputSpec == DEFAULTINPUT)) {
99 inputSpec = "tpcdigits:TPC/CEDIGITS";
100 }
101 } catch (std::out_of_range&) {
102 throw std::invalid_argument(std::string("invalid writer-type type: ") + config.options().get<std::string>("calib-type"));
103 }
104
105 WorkflowSpec workflow;
106
107 if (nLanes <= 0) {
108 return workflow;
109 }
110
111 const bool digitInput = inputSpec.find("DIGITS") != std::string::npos;
112 if (digitInput && nLanes != 1) {
113 LOGP(info, "only one lane allowed for DIGIT type input");
114 nLanes = 1;
115 }
116 for (int ilane = 0; ilane < nLanes; ++ilane) {
117 auto first = tpcsectors.begin() + ilane * sectorsPerLane;
118 if (first >= tpcsectors.end()) {
119 break;
120 }
121 auto last = std::min(tpcsectors.end(), first + sectorsPerLane);
122 std::vector<int> range(first, last);
123 workflow.emplace_back(getTPCCalibPadRawSpec(inputSpec, ilane, range, publishAfterTFs, rawType));
124 }
125
126 workflow.emplace_back(getCalDetMergerPublisherSpec(nLanes, skipCCDB, sendToDCS, publishAfterTFs > 0));
127
128 return workflow;
129}
TPC CalDet merger and CCDB publisher.
A helper class to iteratate over all parts of all input routes.
Helper function to tokenize sequences and ranges of integral numbers.
Generic parser for consecutive raw pages.
TPC Pad-wise raw data calibration processor.
static void writeINI(std::string const &filename, std::string const &keyOnly="")
static void updateFromFile(std::string const &, std::string const &paramsList="", bool unchangedOnly=false)
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
static constexpr int MAXSECTOR
Definition Sector.h:44
GLenum GLint * range
Definition glcorearb.h:1899
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
RAWDataHeaderV7 RAWDataHeader
Global TPC definitions and constants.
Definition SimTraits.h:167
DataProcessorSpec getTPCCalibPadRawSpec(const std::string inputSpec, uint32_t ilane=0, std::vector< int > sectors={}, uint32_t publishAfterTFs=0, CDBType rawType=CDBType::CalPedestalNoise)
o2::framework::DataProcessorSpec getCalDetMergerPublisherSpec(uint32_t lanes, bool skipCCDB, bool sendToDCS, bool dumpAfterComplete=false)
const std::unordered_map< std::string, CDBType > CalibRawTypeMap
CDBType
Calibration and parameter types for CCDB.
Definition CDBTypes.h:26
std::string to_string(gsl::span< T, Size > span)
Definition common.h:52
static CompletionPolicy defineByName(std::string const &name, CompletionPolicy::CompletionOp op)
const std::string DEFAULTINPUT
WorkflowSpec defineDataProcessing(ConfigContext const &config)
This function hooks up the the workflow specifications into the DPL driver.
void customize(std::vector< o2::framework::CompletionPolicy > &policies)