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,
97 float maxEnergy = -99999;
98 for (
unsigned int i = 0;
i != isize; ++
i) {
99 uint16_t xoffset = xpos[
i] -
xmin;
100 uint16_t yoffset = ypos[
i] -
ymin;
103 if (xoffset > maxRow)
105 if (yoffset > maxCol)
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>
247 auto sumFunc = [&
weights,
err](
unsigned int i) {
return weights[
i] * weights[
i] *
err(
i) *
err(
i); };
248 auto outFunc = [](
float x,
float y) {
250 return (
float)
sqrt(x) /
y;
constexpr FTLHitPos(int row, int col)
void setClusterErrorTime(float errtime)
const std::vector< float > & hitTIME_ERROR() const
constexpr Shift(int dx, int dy)
constexpr uint16_t time_error()
void setClusterErrorX(float errx)
std::vector< float > theHitTIME_ERROR
static constexpr unsigned int MAXPOS
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)
constexpr uint16_t time()
static constexpr unsigned int MAXSPAN
constexpr uint16_t energy()
void packCol(uint16_t ymin, uint16_t yspan)
void setClusterErrorY(float erry)
float weighted_sum(const std::vector< float > &weights, SumFunc &&sumFunc, OutFunc &&outFunc) const
std::vector< uint8_t > theHitOffset
std::vector< float > theHitTIME
const std::vector< float > & hitENERGY() const
constexpr int row() const
reco::JetExtendedAssociation::JetExtendedData Value
constexpr FTLHit(uint16_t hit_x, uint16_t hit_y, float hit_energy, float hit_time, float hit_time_error)
void packRow(uint16_t xmin, uint16_t xspan)
const std::vector< uint8_t > & hitOffset() const
float getClusterErrorY() const
std::vector< float > theHitENERGY
float getClusterErrorX() const
bool operator<(DTCELinkId const &lhs, DTCELinkId const &rhs)
static unsigned int const shift
constexpr FTLHitPos operator+(const Shift &shift) const
static int overflow_(uint16_t span)
const std::vector< float > & hitTIME() const
constexpr int col() const
float weighted_mean(const std::vector< float > &weights, Value &&value) const
float getClusterErrorTime() const
const DetId & detid() const
float weighted_mean_error(const std::vector< float > &weights, Err &&err) const