|
|
Go to the documentation of this file. 1 #ifndef DataFormats_FTLRecHit_FTLCluster_h
2 #define DataFormats_FTLRecHit_FTLCluster_h
27 constexpr
FTLHit(uint16_t hit_x, uint16_t hit_y,
float hit_energy,
float hit_time,
float hit_time_error)
29 constexpr uint16_t
x() {
return x_; }
30 constexpr uint16_t
y() {
return y_; }
48 constexpr
int dx()
const {
return dx_; }
49 constexpr
int dy()
const {
return dy_; }
61 constexpr
int row()
const {
return row_; }
62 constexpr
int col()
const {
return col_; }
72 static constexpr
unsigned int MAXSPAN = 255;
73 static constexpr
unsigned int MAXPOS = 2047;
84 float const* time_errors,
98 for (
unsigned int i = 0;
i != isize; ++
i) {
120 inline float x()
const {
125 inline float y()
const {
131 auto t = [
this](
unsigned int i) {
return this->
theHitTIME[
i]; };
222 template <
typename SumFunc,
typename OutFunc>
226 for (
unsigned int i = 0;
i <
weights.size(); ++
i) {
230 return outFunc(tot, sumW);
233 template <
typename Value>
236 auto outFunc = [](
float x,
float y) {
245 template <
typename Err>
248 auto outFunc = [](
float x,
float y) {
250 return (
float)
sqrt(
x) /
y;
263 if (
one.minHitRow() <
other.minHitRow()) {
265 }
else if (
one.minHitRow() >
other.minHitRow()) {
267 }
else if (
one.minHitCol() <
other.minHitCol()) {
float weighted_mean_error(const std::vector< float > &weights, Err &&err) const
std::vector< float > theHitENERGY
float getClusterErrorX() const
constexpr uint16_t time_error()
const std::vector< float > & hitENERGY() const
float getClusterErrorY() const
void packRow(uint16_t xmin, uint16_t xspan)
static int overflow_(uint16_t span)
float weighted_sum(const std::vector< float > &weights, SumFunc &&sumFunc, OutFunc &&outFunc) const
bool operator<(const FTLCluster &one, const FTLCluster &other)
constexpr uint16_t time()
const std::vector< float > & hitTIME_ERROR() const
constexpr int row() const
void setClusterErrorTime(float errtime)
constexpr uint16_t energy()
const std::vector< uint8_t > & hitOffset() const
void setClusterErrorX(float errx)
const std::vector< float > & hitTIME() const
constexpr Shift(int dx, int dy)
void packCol(uint16_t ymin, uint16_t yspan)
constexpr FTLHit(uint16_t hit_x, uint16_t hit_y, float hit_energy, float hit_time, float hit_time_error)
void setClusterErrorY(float erry)
static unsigned const int shift
constexpr FTLHitPos operator+(const Shift &shift) const
static constexpr unsigned int MAXSPAN
static constexpr unsigned int MAXPOS
const DetId & detid() const
std::vector< float > theHitTIME
reco::JetExtendedAssociation::JetExtendedData Value
float getClusterErrorTime() const
std::vector< float > theHitTIME_ERROR
constexpr FTLHitPos(int row, int col)
constexpr int col() const
FTLCluster(DetId id, unsigned int isize, float const *energys, float const *times, float const *time_errors, uint16_t const *xpos, uint16_t const *ypos, uint16_t const xmin, uint16_t const ymin)
std::vector< uint8_t > theHitOffset
float weighted_mean(const std::vector< float > &weights, Value &&value) const