CSCComparatorDigi

Macros

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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
#ifndef DataFormats_CSCDigi_CSCComparatorDigi_h
#define DataFormats_CSCDigi_CSCComparatorDigi_h

/** \class CSCComparatorDigi
 *
 * Digi for CSC Comparators.
 *
 *
 * \author M. Schmitt, Northwestern
 *
 */
#include <iosfwd>
#include <vector>
#include <cstdint>

class CSCComparatorDigi {
public:
  /// Construct from the strip number and the ADC readings.
  CSCComparatorDigi(int strip, int comparator, int timeBinWord);
  ///comparator here can be either 0 or 1 for left or right halfstrip of given strip

  /// Default construction.
  CSCComparatorDigi();

  /// Digis are equal if they are on the same strip and have same Comparator data
  bool operator==(const CSCComparatorDigi& digi) const;

  /// sort by time first, then by strip
  bool operator<(const CSCComparatorDigi& digi) const;

  /// Get the distrip number. Counts from 0.
  int getDiStrip() const;

  /// Get the strip number. Counts from 1.
  int getStrip() const { return strip_; }

  /// Get the CFEB number. Counts from 0.
  int getCFEB() const;

  /// Get Comparator readings. Can be 0 or 1.
  int getComparator() const { return comparator_; }

  /// Return the word with each bit corresponding to a time bin
  int getTimeBinWord() const { return timeBinWord_; }

  /// Return bin number of first time bin which is ON. Counts from 0.
  int getTimeBin() const;

  /// Get the associated halfstrip number for this comparator digi. Counts from 0.
  int getHalfStrip() const;

  /// Return the fractional half-strip. Counts from 0.25
  float getFractionalStrip() const;

  /** Return vector of the bin numbers for which time bins are ON.
   * e.g. if bits 0 and 13 fired, then this vector will contain the values 0 and 13
   */
  std::vector<int> getTimeBinsOn() const;

  /// Set the strip number
  void setStrip(int strip);

  /// Set Comparator data
  void setComparator(int comparator);

  /// Print content of digi
  void print() const;

private:
  uint16_t strip_;
  uint16_t comparator_;
  uint16_t timeBinWord_;
};

/// Output operator
std::ostream& operator<<(std::ostream& o, const CSCComparatorDigi& digi);

#endif