Project
Loading...
Searching...
No Matches
PreClustersDE.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
17
18namespace o2
19{
20namespace mid
21{
22
23//______________________________________________________________________________
25{
27
28 // prepare storage of PreClusters
29 mPreClustersNBP.reserve(100);
30 for (int icol = 0; icol < 7; ++icol) {
31 mPreClustersBP[icol].reserve(20);
32 }
33
34 return true;
35}
36
37//______________________________________________________________________________
38std::vector<int> PreClustersDE::getNeighbours(int icolumn, int idx) const
39{
41 std::vector<int> neighbours;
42 if (icolumn == 6) {
43 return neighbours;
44 }
45 const BP& pcB = mPreClustersBP[icolumn][idx];
46 static constexpr double epsilon = 0.1;
47 // The epsilon is used to reject strips that touches only in one corner
48 for (int ib = 0; ib < mPreClustersBP[icolumn + 1].size(); ++ib) {
49 const BP& neigh = mPreClustersBP[icolumn + 1][ib];
50 if (neigh.area.getYmin() > pcB.area.getYmax() - epsilon) {
51 continue;
52 }
53 if (neigh.area.getYmax() < pcB.area.getYmin() + epsilon) {
54 continue;
55 }
56 neighbours.emplace_back(ib);
57 }
58 return neighbours;
59}
60
61//______________________________________________________________________________
63{
65 mDEId = 99;
66 mPreClustersNBP.clear();
67 for (int icol = 0; icol < 7; ++icol) {
68 mPreClustersBP[icol].clear();
69 }
70}
71} // namespace mid
72} // namespace o2
Structure with pre-clusters in the MID detection element.
double getYmin() const
Get y min.
Definition MpArea.h:51
double getYmax() const
Get y max.
Definition MpArea.h:53
std::vector< int > getNeighbours(int icolumn, int idx) const
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
MpArea area
Is paired flag.