Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
#include "DataFormats/GEMDigi/interface/GEMPadDigiCluster.h"
#include <iostream>

GEMPadDigiCluster::GEMPadDigiCluster(std::vector<uint16_t> pads,
                                     int16_t bx,
                                     enum GEMSubDetId::Station station,
                                     unsigned nPart)
    : v_(pads), bx_(bx), station_(station), part_(nPart) {}

GEMPadDigiCluster::GEMPadDigiCluster()
    : v_(std::vector<uint16_t>()), bx_(-99), station_(GEMSubDetId::Station::GE11), part_(NumberPartitions::GE11) {}

// Comparison
bool GEMPadDigiCluster::operator==(const GEMPadDigiCluster& digi) const {
  return v_ == digi.pads() and bx_ == digi.bx() and station_ == digi.station();
}

// Comparison
bool GEMPadDigiCluster::operator!=(const GEMPadDigiCluster& digi) const {
  return v_ != digi.pads() or bx_ != digi.bx();
}

///Precedence operator
bool GEMPadDigiCluster::operator<(const GEMPadDigiCluster& digi) const {
  if (digi.bx() == bx_)
    return digi.pads().front() < v_.front();
  else
    return digi.bx() < bx_;
}

bool GEMPadDigiCluster::isValid() const {
  // empty clusters are always invalid
  if (v_.empty())
    return false;

  uint16_t invalid = GE11InValid;
  if (station_ == GEMSubDetId::Station::GE21) {
    invalid = GE21InValid;
  }
  return v_[0] != invalid;
}

std::ostream& operator<<(std::ostream& o, const GEMPadDigiCluster& digi) {
  o << " bx: " << digi.bx() << " pads: [";
  for (auto p : digi.pads())
    o << " " << p;
  o << "]";
  return o;
}

void GEMPadDigiCluster::print() const {
  std::cout << " bx: " << bx() << " pads: ";
  for (auto p : pads())
    std::cout << " " << p;
  std::cout << std::endl;
}