61 LOG(info) <<
"initializing cluster finder";
63 auto config = ic.
options().
get<std::string>(
"mch-config");
64 if (!config.empty()) {
67 bool run2Config = ic.
options().
get<
bool>(
"run2-config");
68 mClusterFinder.
init(run2Config);
70 mAttachInitalPrecluster = ic.
options().
get<
bool>(
"attach-initial-precluster");
74 LOG(info) <<
"cluster finder duration = " << mTimeClusterFinder.count() <<
" s";
76 LOGP(warning, fmt::runtime(error.
asString()));
78 this->mClusterFinder.
deinit();
88 auto preClusterROFs = pc.
inputs().
get<gsl::span<ROFRecord>>(
"preclusterrofs");
89 auto preClusters = pc.
inputs().
get<gsl::span<PreCluster>>(
"preclusters");
97 clusterROFs.reserve(preClusterROFs.size());
100 for (
const auto& preClusterROF : preClusterROFs) {
103 auto clusterOffset =
clusters.size();
104 mClusterFinder.
reset();
106 for (
const auto& preCluster : preClusters.subspan(preClusterROF.getFirstIdx(), preClusterROF.getNEntries())) {
108 auto preclusterDigits =
digits.subspan(preCluster.firstDigit, preCluster.nDigits);
109 auto firstClusterIdx = mClusterFinder.
getClusters().size();
112 auto tStart = std::chrono::high_resolution_clock::now();
114 auto tEnd = std::chrono::high_resolution_clock::now();
115 mTimeClusterFinder += tEnd - tStart;
117 if (mAttachInitalPrecluster) {
119 writeClusters(preclusterDigits, firstClusterIdx,
clusters, usedDigits);
123 if (!mAttachInitalPrecluster) {
125 writeClusters(
clusters, usedDigits);
129 clusterROFs.emplace_back(preClusterROF.getBCData(), clusterOffset,
clusters.size() - clusterOffset,
130 preClusterROF.getBCWidth());
135 errorMap.forEach([&clusterErrors](
Error error) {
136 clusterErrors.emplace_back(error);
138 mErrorMap.
add(errorMap);
140 LOGP(info,
"Found {:4d} clusters from {:4d} preclusters in {:2d} ROFs",
141 clusters.size(), preClusters.size(), preClusterROFs.size());
146 void writeClusters(
const gsl::span<const Digit>& preclusterDigits,
size_t firstClusterIdx,
147 std::vector<
Cluster, o2::pmr::polymorphic_allocator<Cluster>>&
clusters,
148 std::vector<
Digit, o2::pmr::polymorphic_allocator<Digit>>& usedDigits)
const
153 if (firstClusterIdx == mClusterFinder.
getClusters().size()) {
157 auto clusterOffset =
clusters.size();
160 auto digitOffset = usedDigits.size();
161 usedDigits.insert(usedDigits.end(), preclusterDigits.begin(), preclusterDigits.end());
163 for (
auto itCluster =
clusters.begin() + clusterOffset; itCluster <
clusters.end(); ++itCluster) {
164 itCluster->firstDigit = digitOffset;
165 itCluster->nDigits = preclusterDigits.size();
170 void writeClusters(std::vector<
Cluster, o2::pmr::polymorphic_allocator<Cluster>>&
clusters,
171 std::vector<Digit, o2::pmr::polymorphic_allocator<Digit>>& usedDigits)
const
176 auto clusterOffset =
clusters.size();
179 auto digitOffset = usedDigits.size();
182 for (
auto itCluster =
clusters.begin() + clusterOffset; itCluster <
clusters.end(); ++itCluster) {
183 itCluster->firstDigit += digitOffset;
187 bool mAttachInitalPrecluster =
false;
188 ClusterFinderOriginal mClusterFinder{};
189 ErrorMap mErrorMap{};
190 std::chrono::duration<double> mTimeClusterFinder{};
198 Inputs{
InputSpec{
"preclusterrofs",
"MCH",
"PRECLUSTERROFS", 0, Lifetime::Timeframe},
199 InputSpec{
"preclusters",
"MCH",
"PRECLUSTERS", 0, Lifetime::Timeframe},
200 InputSpec{
"digits",
"MCH",
"PRECLUSTERDIGITS", 0, Lifetime::Timeframe}},
201 Outputs{
OutputSpec{{
"clusterrofs"},
"MCH",
"CLUSTERROFS", 0, Lifetime::Timeframe},
202 OutputSpec{{
"clusters"},
"MCH",
"CLUSTERS", 0, Lifetime::Timeframe},
203 OutputSpec{{
"clusterdigits"},
"MCH",
"CLUSTERDIGITS", 0, Lifetime::Timeframe},
204 OutputSpec{{
"clustererrors"},
"MCH",
"CLUSTERERRORS", 0, Lifetime::Timeframe}},
206 Options{{
"mch-config", VariantType::String,
"", {
"JSON or INI file with clustering parameters"}},
207 {
"run2-config", VariantType::Bool,
false, {
"setup for run2 data"}},
208 {
"attach-initial-precluster", VariantType::Bool,
false, {
"attach all digits of initial precluster to cluster"}}}};
Definition of a data processor to run the original MLEM cluster finder.
Definition of a class to reconstruct clusters with the original MLEM algorithm.
definition of the MCH processing errors
Definition of the MCH precluster minimal structure.
static void updateFromFile(std::string const &, std::string const ¶msList="", bool unchangedOnly=false)
T get(const char *key) const
decltype(auto) make(const Output &spec, Args... args)
ServiceRegistryRef services()
ConfigParamRegistry const & options()
DataAllocator & outputs()
The data allocator is used to allocate memory for the output data.
InputRecord & inputs()
The inputs associated with this processing context.
HMPID cluster implementation.
void init(framework::InitContext &ic)
void run(framework::ProcessingContext &pc)
const std::vector< Digit > & getUsedDigits() const
return the list of digits used in reconstructed clusters
ErrorMap & getErrorMap()
return the counting of encountered errors
void init(bool run2Config)
void findClusters(gsl::span< const Digit > digits)
const std::vector< Cluster > & getClusters() const
return the list of reconstructed clusters
MCH digit implementation.
void forEach(ErrorFunction f) const
void add(ErrorType errorType, uint32_t id0, uint32_t id1, uint64_t n=1)
Defining PrimaryVertex explicitly as messageable.
std::vector< ConfigParamSpec > Options
std::vector< InputSpec > Inputs
std::vector< OutputSpec > Outputs
o2::framework::DataProcessorSpec getClusterFinderOriginalSpec(const char *specName="mch-cluster-finder-original")
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Defining DataPointCompositeObject explicitly as copiable.
cluster minimal structure
std::string asString() const
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
std::vector< Cluster > clusters
std::vector< Digit > digits