Project
Loading...
Searching...
No Matches
ClusterTopology.h
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
23
24#ifndef ALICEO2_ITSMFT_CLUSTERTOPOLOGY_H
25#define ALICEO2_ITSMFT_CLUSTERTOPOLOGY_H
27#include <map>
28#include <iosfwd>
29
30namespace o2
31{
32namespace itsmft
33{
35{
36 public:
40 ClusterTopology(int nRow, int nCol, const unsigned char patt[ClusterPattern::MaxPatternBytes]);
43
45 unsigned char getByte(int n) const { return mPattern.getByte(n); }
47 const std::array<unsigned char, ClusterPattern::kExtendedPatternBytes>& getPattern() const { return mPattern.getPattern(); }
48 const ClusterPattern& getClusterPattern() const { return mPattern; }
50 int getRowSpan() const { return mPattern.getRowSpan(); }
52 int getColumnSpan() const { return mPattern.getColumnSpan(); }
54 int getUsedBytes() const { return mPattern.getUsedBytes(); }
56 unsigned long getHash() const { return mHash; }
58 friend std::ostream& operator<<(std::ostream& os, const ClusterTopology& top);
60 void print() const;
62 static unsigned int hashFunction(const void* key, int len);
64 static unsigned long getCompleteHash(int nRow, int nCol, const unsigned char patt[ClusterPattern::MaxPatternBytes]);
65 static unsigned long getCompleteHash(const ClusterTopology& topology);
67 void setPattern(int nRow, int nCol, const unsigned char patt[ClusterPattern::MaxPatternBytes]);
69 void setPattern(const ClusterPattern& patt);
70
72 static void makeRareTopologyMap(const std::vector<ClusterTopology>& vec, std::map<int, ClusterPattern>& map)
73 {
74 for (const auto& topo : vec) {
75 auto key = topo.getHash();
76 map[key] = topo.getClusterPattern();
77 }
78 }
79
80 private:
81 void setHash(unsigned long hash) { mHash = hash; }
82 ClusterPattern mPattern;
88 unsigned long mHash;
89
90 ClassDefNV(ClusterTopology, 2);
91};
92} // namespace itsmft
93} // namespace o2
94
95#endif /* ALICEO2_ITS_CLUSTERTOPOLOGY_H */
StringRef key
int getRowSpan() const
Returns the number of rows.
static constexpr int MaxPatternBytes
int getColumnSpan() const
Returns the number of columns.
unsigned char getByte(int n) const
Returns a specific byte of the pattern.
const std::array< unsigned char, kExtendedPatternBytes > & getPattern() const
Returns the pattern.
int getUsedBytes() const
Returns the number of bytes used for the pattern.
int getRowSpan() const
Returns the number of rows.
static void makeRareTopologyMap(const std::vector< ClusterTopology > &vec, std::map< int, ClusterPattern > &map)
Helper function useful for analyses with topologies stored on a separate branch.
int getColumnSpan() const
Returns the number of columns.
const std::array< unsigned char, ClusterPattern::kExtendedPatternBytes > & getPattern() const
Returns the pattern.
unsigned long getHash() const
Returns the hashcode.
const ClusterPattern & getClusterPattern() const
int getUsedBytes() const
Returns the number of used bytes.
void setPattern(int nRow, int nCol, const unsigned char patt[ClusterPattern::MaxPatternBytes])
Sets the pattern.
friend std::ostream & operator<<(std::ostream &os, const ClusterTopology &top)
Prints the topology.
static unsigned int hashFunction(const void *key, int len)
MurMur2 hash fucntion.
void print() const
Prints to the stdout.
static unsigned long getCompleteHash(int nRow, int nCol, const unsigned char patt[ClusterPattern::MaxPatternBytes])
Compute the complete hash as defined for mHash.
unsigned char getByte(int n) const
Returns a specific byte of the pattern.
ClusterTopology()
Default constructor.
GLdouble n
Definition glcorearb.h:1982
GLdouble GLdouble GLdouble GLdouble top
Definition glcorearb.h:4077
GLenum GLenum GLsizei len
Definition glcorearb.h:4232
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::vector< o2::ctf::BufferType > vec