11 template <
typename TILES>
13 const std::vector<TICLSeedingRegion> &
regions,
17 const std::vector<float> &
mask,
18 const edm::ValueMap<std::pair<float, float>> &layerClustersTime,
26 int maxNumberOfLayers,
31 isOuterClusterOfDoublets_.clear();
34 theRootDoublets_.clear();
42 int startEtaBin, endEtaBin, startPhiBin, endPhiBin;
52 auto firstLayerOnZSide = maxNumberOfLayers * zSide;
53 const auto &firstLayerHisto =
histo[firstLayerOnZSide];
54 origin_eta =
r.origin.eta();
55 origin_phi =
r.origin.phi();
56 int entryEtaBin = firstLayerHisto.etaBin(origin_eta);
57 int entryPhiBin = firstLayerHisto.phiBin(origin_phi);
62 auto etaWindow = deltaIEta;
68 <<
" reached! Increasing inner search window" << std::endl;
70 startEtaBin =
std::max(entryEtaBin - etaWindow, 0);
75 LogDebug(
"HGCGraph") <<
" Entrance eta, phi: " << origin_eta <<
", " << origin_phi
76 <<
" entryEtaBin: " << entryEtaBin <<
" entryPhiBin: " << entryPhiBin
77 <<
" globalBin: " << firstLayerHisto.globalBin(origin_eta, origin_phi)
78 <<
" on layer: " << firstLayerOnZSide <<
" startEtaBin: " << startEtaBin
79 <<
" endEtaBin: " << endEtaBin <<
" startPhiBin: " << startPhiBin
80 <<
" endPhiBin: " << endPhiBin <<
" phiBin(0): " << firstLayerHisto.phiBin(0.)
81 <<
" phiBin(" <<
M_PI / 2. <<
"): " << firstLayerHisto.phiBin(
M_PI / 2.) <<
" phiBin(" 82 <<
M_PI <<
"): " << firstLayerHisto.phiBin(
M_PI) <<
" phiBin(" << -
M_PI / 2.
83 <<
"): " << firstLayerHisto.phiBin(-
M_PI / 2.) <<
" phiBin(" << -
M_PI 84 <<
"): " << firstLayerHisto.phiBin(-
M_PI) <<
" phiBin(" << 2. *
M_PI 85 <<
"): " << firstLayerHisto.phiBin(2. *
M_PI) << std::endl;
89 for (
int il = 0; il < maxNumberOfLayers - 1; ++il) {
90 for (
int outer_layer = 0; outer_layer <
std::min(1 +
skip_layers, maxNumberOfLayers - 1 - il); ++outer_layer) {
91 int currentInnerLayerId = il + maxNumberOfLayers * zSide;
92 int currentOuterLayerId = currentInnerLayerId + 1 + outer_layer;
93 auto const &outerLayerHisto =
histo[currentOuterLayerId];
94 auto const &innerLayerHisto =
histo[currentInnerLayerId];
101 <<
" at etaBin: " << etaLimitIncreaseWindowBin << std::endl;
104 for (
int ieta = startEtaBin;
ieta < endEtaBin; ++
ieta) {
106 for (
int iphi_it = startPhiBin; iphi_it < endPhiBin; ++iphi_it) {
110 <<
" on layers I/O: " << currentInnerLayerId <<
"/" << currentOuterLayerId
111 <<
" with clusters: " << innerLayerHisto[
offset +
iphi].
size() << std::endl;
113 for (
auto innerClusterId : innerLayerHisto[
offset +
iphi]) {
115 if (
mask[innerClusterId] == 0.) {
117 LogDebug(
"HGCGraph") <<
"Skipping inner masked cluster " << innerClusterId << std::endl;
126 auto etaWindow = deltaIEta;
132 LogDebug(
"HGCGraph") <<
"Eta and Phi window increased by one" << std::endl;
138 for (
int oeta = etaRangeMin; oeta < etaRangeMax; ++oeta) {
140 for (
int phiRange = 0; phiRange < 2 *
phiWindow + 1; ++phiRange) {
149 <<
" on layers I/O: " << currentInnerLayerId <<
"/" << currentOuterLayerId
150 <<
" with clusters: " << innerLayerHisto[oeta *
nPhiBins + ophi].
size()
153 for (
auto outerClusterId : outerLayerHisto[oeta *
nPhiBins + ophi]) {
155 if (
mask[outerClusterId] == 0.) {
157 LogDebug(
"HGCGraph") <<
"Skipping outer masked cluster " << outerClusterId << std::endl;
160 auto doubletId = allDoublets_.size();
161 if (maxDeltaTime != -1 &&
162 !areTimeCompatible(innerClusterId, outerClusterId, layerClustersTime, maxDeltaTime)) {
164 LogDebug(
"HGCGraph") <<
"Rejecting doublets due to timing!" << std::endl;
167 if (currentOuterLayerId - currentInnerLayerId == 1) {
168 if (areOverlappingOnSiblingLayers(innerClusterId, outerClusterId,
layerClusters, maxRSquared)) {
169 allDoublets_.emplace_back(
170 innerClusterId, outerClusterId, doubletId, &
layerClusters,
r.index,
true);
175 allDoublets_.emplace_back(
176 innerClusterId, outerClusterId, doubletId, &
layerClusters,
r.index,
false);
180 <<
"Creating doubletsId: " << doubletId <<
" layerLink in-out: [" << currentInnerLayerId
181 <<
", " << currentOuterLayerId <<
"] clusterLink in-out: [" << innerClusterId <<
", " 182 << outerClusterId <<
"]" << std::endl;
184 isOuterClusterOfDoublets_[outerClusterId].push_back(doubletId);
185 auto &neigDoublets = isOuterClusterOfDoublets_[innerClusterId];
186 auto &thisDoublet = allDoublets_[doubletId];
189 <<
"Checking compatibility of doubletId: " << doubletId
190 <<
" with all possible inners doublets link by the innerClusterId: " << innerClusterId
194 thisDoublet.checkCompatibilityAndTag(allDoublets_,
200 if (isRootDoublet and checkDistanceRootDoubletVsSeed) {
205 isRootDoublet =
false;
209 theRootDoublets_.push_back(doubletId);
222 LogDebug(
"HGCGraph") <<
"number of Root doublets " << theRootDoublets_.size() <<
" over a total number of doublets " 223 << allDoublets_.size() << std::endl;
228 template <
typename TILES>
231 const edm::ValueMap<std::pair<float, float>> &layerClustersTime,
232 float maxDeltaTime) {
233 float timeIn = layerClustersTime.get(innerIdx).first;
234 float timeInE = layerClustersTime.get(innerIdx).second;
235 float timeOut = layerClustersTime.get(outerIdx).first;
236 float timeOutE = layerClustersTime.get(outerIdx).second;
238 return (timeIn == -99. || timeOut == -99. ||
239 std::abs(timeIn - timeOut) < maxDeltaTime *
sqrt(timeInE * timeInE + timeOutE * timeOutE));
242 template <
typename TILES>
254 template <
typename TILES>
256 std::vector<int> &seedIndices,
257 const unsigned int minClustersPerNtuplet,
259 unsigned int maxOutInHops) {
261 tmpNtuplet.reserve(minClustersPerNtuplet);
262 std::vector<std::pair<unsigned int, unsigned int>> outInToVisit;
263 for (
auto rootDoublet : theRootDoublets_) {
265 outInToVisit.clear();
266 int seedIndex = allDoublets_[rootDoublet].seedIndex();
268 allDoublets_[rootDoublet].findNtuplets(
269 allDoublets_, tmpNtuplet, seedIndex, outInDFS, outInHops, maxOutInHops, outInToVisit);
270 while (!outInToVisit.empty()) {
271 allDoublets_[outInToVisit.back().first].findNtuplets(
272 allDoublets_, tmpNtuplet, seedIndex, outInDFS, outInToVisit.back().second, maxOutInHops, outInToVisit);
273 outInToVisit.pop_back();
276 if (tmpNtuplet.size() > minClustersPerNtuplet) {
278 seedIndices.push_back(seedIndex);
std::vector< unsigned int > HGCntuplet
void makeAndConnectDoublets(const TILES &h, const std::vector< TICLSeedingRegion > ®ions, int nEtaBins, int nPhiBins, const std::vector< reco::CaloCluster > &layerClusters, const std::vector< float > &mask, const edm::ValueMap< std::pair< float, float >> &layerClustersTime, int deltaIEta, int deltaIPhi, float minCosThetai, float maxCosPointing, float root_doublet_max_distance_from_seed_squared, float etaLimitIncreaseWindow, int skip_layers, int maxNumberOfLayers, float maxDeltaTime, int lastLayerEE, int lastLayerFH, const std::vector< double > &siblings_maxRSquared)
bool areOverlappingOnSiblingLayers(int innerIdx, int outerIdx, const std::vector< reco::CaloCluster > &layerClusters, float maxRSquared)
Abs< T >::type abs(const T &t)
bool areTimeCompatible(int innerIdx, int outerIdx, const edm::ValueMap< std::pair< float, float >> &layerClustersTime, float maxDeltaTime)
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
auto const & foundNtuplets
void findNtuplets(std::vector< HGCDoublet::HGCntuplet > &foundNtuplets, std::vector< int > &seedIndices, const unsigned int minClustersPerNtuplet, const bool outInDFS, const unsigned int maxOutInHops)
root_doublet_max_distance_from_seed_squared