AlignPCLThresholds

coordType

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
#ifndef CondFormats_PCLConfig_AlignPCLThresholds_h
#define CondFormats_PCLConfig_AlignPCLThresholds_h

#include "CondFormats/PCLConfig/interface/AlignPCLThreshold.h"
#include "CondFormats/Serialization/interface/Serializable.h"

#include <array>
#include <map>
#include <string>
#include <vector>

class AlignPCLThresholds {
public:
  typedef std::map<std::string, AlignPCLThreshold> threshold_map;
  enum coordType { X, Y, Z, theta_X, theta_Y, theta_Z, extra_DOF, endOfTypes };

  AlignPCLThresholds() {}
  virtual ~AlignPCLThresholds() {}

  void setAlignPCLThreshold(const std::string &AlignableId, const AlignPCLThreshold &Threshold);
  void setAlignPCLThresholds(const int &Nrecords, const threshold_map &Thresholds);
  void setNRecords(const int &Nrecords);

  const threshold_map &getThreshold_Map() const { return m_thresholds; }
  const int &getNrecords() const { return m_nrecords; }

  AlignPCLThreshold getAlignPCLThreshold(const std::string &AlignableId) const;
  AlignPCLThreshold &getAlignPCLThreshold(const std::string &AlignableId);

  float getSigCut(const std::string &AlignableId, const coordType &type) const;
  float getCut(const std::string &AlignableId, const coordType &type) const;
  float getMaxMoveCut(const std::string &AlignableId, const coordType &type) const;
  float getMaxErrorCut(const std::string &AlignableId, const coordType &type) const;

  // overloaded methods to get all the coordinates
  std::array<float, 6> getSigCut(const std::string &AlignableId) const;
  std::array<float, 6> getCut(const std::string &AlignableId) const;
  std::array<float, 6> getMaxMoveCut(const std::string &AlignableId) const;
  std::array<float, 6> getMaxErrorCut(const std::string &AlignableId) const;

  std::array<float, 4> getExtraDOFCutsForAlignable(const std::string &AlignableId, const unsigned int i) const;
  std::string getExtraDOFLabelForAlignable(const std::string &AlignableId, const unsigned int i) const;

  double size() const { return m_thresholds.size(); }
  std::vector<std::string> getAlignableList() const;

  void printAll() const;

protected:
  threshold_map m_thresholds;
  int m_nrecords;

  COND_SERIALIZABLE;
};

#endif