CaloTPGTranscoder

Mode

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
#ifndef CALIBFORMATS_CALOTPG_CALOTPGTRANSCODER_H
#define CALIBFORMATS_CALOTPG_CALOTPGTRANSCODER_H 1

#include "DataFormats/HcalDetId/interface/HcalTrigTowerDetId.h"
#include "DataFormats/EcalDetId/interface/EcalTrigTowerDetId.h"
#include "DataFormats/HcalDigi/interface/HcalTriggerPrimitiveSample.h"
#include "DataFormats/EcalDigi/interface/EcalTriggerPrimitiveSample.h"
#include <memory>

class HcalTPGCompressor;
class EcalTPGCompressor;

namespace edm {
  class EventSetup;
}

/** \class CaloTPGTranscoder
  *  
  * Abstract interface for the mutual transcoder required for compressing
  * and uncompressing the ET stored in HCAL and ECAL Trigger Primitives
  * 
  * \author J. Mans - Minnesota
  */
class CaloTPGTranscoder {
public:
  CaloTPGTranscoder();
  virtual ~CaloTPGTranscoder();

  enum Mode { All = 0, RCT = 1, HcalTPG = 2, EcalTPG = 3 };
  /** \brief Compression from linear samples+fine grain in the HTR */
  virtual HcalTriggerPrimitiveSample hcalCompress(const HcalTrigTowerDetId& id,
                                                  unsigned int sample,
                                                  int fineGrain) const = 0;
  /** \brief Compression from linear samples+fine grain in the ECAL */
  virtual EcalTriggerPrimitiveSample ecalCompress(const EcalTrigTowerDetId& id,
                                                  unsigned int sample,
                                                  bool fineGrain) const = 0;
  /** \brief Uncompression for the Electron/Photon path in the RCT */
  virtual void rctEGammaUncompress(const HcalTrigTowerDetId& hid,
                                   const HcalTriggerPrimitiveSample& hc,
                                   const EcalTrigTowerDetId& eid,
                                   const EcalTriggerPrimitiveSample& ec,
                                   unsigned int& et,
                                   bool& egVeto,
                                   bool& activity) const = 0;
  /** \brief Uncompression for the JET path in the RCT */
  virtual void rctJetUncompress(const HcalTrigTowerDetId& hid,
                                const HcalTriggerPrimitiveSample& hc,
                                const EcalTrigTowerDetId& eid,
                                const EcalTriggerPrimitiveSample& ec,
                                unsigned int& et) const = 0;

  virtual double hcaletValue(const int& ieta, const int& iphi, const int& version, const int& compressedValue) const = 0;
  virtual double hcaletValue(const HcalTrigTowerDetId& hid, const HcalTriggerPrimitiveSample& hc) const = 0;
  std::shared_ptr<const HcalTPGCompressor> getHcalCompressor() const { return hccompress_; }
  std::shared_ptr<const EcalTPGCompressor> getEcalCompressor() const { return eccompress_; }

private:
  std::shared_ptr<const HcalTPGCompressor> hccompress_;
  std::shared_ptr<const EcalTPGCompressor> eccompress_;
};

#endif