PixelGlobalDelay25

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
#ifndef PixelGlobalDelay25_h
#define PixelGlobalDelay25_h
/**
* \file CalibFormats/SiPixelObjects/interface/PixelGlobalDelay25.h
* \brief This class specifies which delay25 channels are delayed over the entire pixel detector and by how much
*
*   A longer explanation will be placed here later
*
*/
#include <iostream>
#include <vector>
#include <string>
#include "CalibFormats/SiPixelObjects/interface/PixelConfigBase.h"

namespace pos {
  /*!  \ingroup ConfigurationObjects "Configuration Objects"
*    
*  @{
*
*  \class PixelGlobalDelay25 PixelGlobalDelay25.h
*  \brief This class specifies which delay25 channels are delayed over the entire pixel detector and by how much
*
*   A longer explanation will be placed here later
*
*/
  class PixelGlobalDelay25 : public PixelConfigBase {
  public:
    PixelGlobalDelay25(std::string filename);                         // create from file
    PixelGlobalDelay25(std::vector<std::vector<std::string> > &tab);  // create from DB
    ~PixelGlobalDelay25() override;

    unsigned int getDelay(unsigned int offset = 0) const;        // delays in steps of 0.499 ns (Delay25 step)
    unsigned int getCyclicDelay(unsigned int offset = 0) const;  // delays in steps of 0.499 ns (Delay25 step)
    unsigned int getTTCrxDelay(unsigned int offset) const;       // delays in steps of 0.10396 ns (TTCrx step)
    unsigned int getTTCrxDelay() const;                          // delays in steps of 0.10396 ns (TTCrx step)
                                                                 // but assumes that the default TTCrx delay is 0 ns
    virtual void setDelay(unsigned int delay) { delay_ = delay; }

    void writeASCII(std::string dir) const override;
    //    void 	 writeXML(      pos::PixelConfigKey key, int version, std::string path)                     const ;
    void writeXMLHeader(pos::PixelConfigKey key,
                        int version,
                        std::string path,
                        std::ofstream *out,
                        std::ofstream *out1 = nullptr,
                        std::ofstream *out2 = nullptr) const override;
    void writeXML(std::ofstream *out, std::ofstream *out1 = nullptr, std::ofstream *out2 = nullptr) const override;
    void writeXMLTrailer(std::ofstream *out,
                         std::ofstream *out1 = nullptr,
                         std::ofstream *out2 = nullptr) const override;

  private:
    unsigned int delay_;
  };
}  // namespace pos
/* @} */
#endif