24#include <fairlogger/Logger.h>
41 if (mIntegrator ==
nullptr) {
46 std::vector<o2::dataformats::MCTruthContainer<o2::MCCompLabel>> outMCLabelContainers;
48 outMCLabels =
nullptr;
57 int numberOfOutputContainers = 0;
58 for (
int loop = 0; loop < 2; loop++) {
59 int nTotalClusters = 0;
60 for (
int i = 0;
i < inputClusters.size();
i++) {
61 if (outMCLabels && inputClusters[
i].second > 1) {
62 LOG(error) <<
"Decoding of ClusterHardware to ClusterNative with MC labels is yet only support for single 8kb pages of ClusterHardwareContainer\n";
65 for (
int j = 0;
j < inputClusters[
i].second;
j++) {
66 const char* tmpPtr =
reinterpret_cast<const char*
>(inputClusters[
i].first);
79 int& nCls = nRowClusters[sector][padRowGlobal];
83 ClusterNative& cOut = outputClusterBuffer[clusterOffsets[sector][padRowGlobal] + nCls];
91 mIntegrator->integrateCluster(sector, padRowGlobal, pad, cIn.
getQTot());
93 auto& mcOut = outMCLabelContainers[containerRowCluster[sector][padRowGlobal]];
94 for (
const auto& element : (*inMCLabels)[
i].getLabels(k)) {
95 mcOut.addElement(nCls, element);
101 numberOfOutputContainers++;
113 if (nRowClusters[
i][
j] == 0) {
117 sortClustersAndMC(outputClusterBuffer + clusterOffsets[
i][
j], nRowClusters[
i][
j], outMCLabelContainers[containerRowCluster[
i][
j]]);
119 auto* cl = outputClusterBuffer + clusterOffsets[
i][
j];
120 std::sort(cl, cl + nRowClusters[
i][
j]);
127 outMCLabelContainers.resize(numberOfOutputContainers);
130 char* rawOutputBuffer = outputAllocator(rawOutputBufferSize);
134 numberOfOutputContainers = 0;
137 clusterCounts.nClusters[
i][
j] = nRowClusters[
i][
j];
138 if (nRowClusters[
i][
j] == 0) {
141 containerRowCluster[
i][
j] = numberOfOutputContainers++;
142 clusterOffsets[
i][
j] = nTotalClusters;
143 nTotalClusters += nRowClusters[
i][
j];
144 mIntegrator->initRow(
i,
j);
147 memset(nRowClusters, 0,
sizeof(nRowClusters));
153 auto& labels = *outMCLabels;
157 if (nRowClusters[
i][
j] == 0) {
160 for (
int k = 0,
end = outMCLabelContainers[containerRowCluster[
i][
j]].getIndexedSize(); k <
end; k++, nCls++) {
161 assert(
end == nRowClusters[
i][
j]);
162 assert(clusterOffsets[
i][
j] + k == nCls);
163 for (
const auto& element : outMCLabelContainers[containerRowCluster[
i][
j]].getLabels(k)) {
164 labels.addElement(nCls, element);
176 std::vector<unsigned int> indizes(
nClusters);
177 std::iota(indizes.begin(), indizes.end(), 0);
178 std::sort(indizes.begin(), indizes.end(), [&
clusters](
const auto a,
const auto b) {
179 return clusters[a] < clusters[b];
Class of a TPC cluster as produced by the hardware cluster finder (needs a postprocessing step to con...
Helper class to read the binary format of TPC ClusterNative.
Class of a TPC cluster in TPC-native coordinates (row, time)
Decoder to convert TPC ClusterHardware to ClusterNative.
Definition of a container to keep Monte Carlo truth external to simulation objects.
Definition of the parameter class for the detector.
Definition of the parameter class for the detector electronics.
Definition of the parameter class for the detector gas.
unsigned char region() const
const Sector sector() const
static void sortClustersAndMC(ClusterNative *clusters, size_t nClusters, o2::dataformats::MCTruthContainer< o2::MCCompLabel > &mcTruth)
Sort clusters and MC labels in place ClusterNative defines the smaller-than relation used in the sort...
std::function< char *(size_t)> OutputAllocator
Allocator function object to provide the output buffer.
int decodeClusters(std::vector< std::pair< const o2::tpc::ClusterHardwareContainer *, std::size_t > > &inputClusters, OutputAllocator outputAllocator, const std::vector< o2::dataformats::ConstMCTruthContainerView< o2::MCCompLabel > > *inMCLabels=nullptr, o2::dataformats::MCTruthContainer< o2::MCCompLabel > *outMCLabels=nullptr)
Decode clusters provided in raw pages The function uses an allocator object to request a raw char buf...
static Mapper & instance(const std::string mappingDir="")
const PadRegionInfo & getPadRegionInfo(const unsigned char region) const
unsigned char getGlobalRowOffset() const
GLboolean GLboolean GLboolean b
GLuint GLsizei const GLchar * label
GLboolean GLboolean GLboolean GLboolean a
constexpr int MAXGLOBALPADROW
Global TPC definitions and constants.
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
ClusterHardware clusters[0]
uint16_t numberOfClusters
float getSigmaPad2() const
float getSigmaTime2() const
float getTimeLocal() const
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
std::vector< Cluster > clusters