pdscalibdata/include/CsPad2x2CommonModeV2.h

Go to the documentation of this file.
00001 #ifndef PDSCALIBDATA_CSPAD2X2COMMONMODEV2_H
00002 #define PDSCALIBDATA_CSPAD2X2COMMONMODEV2_H
00003 
00004 //--------------------------------------------------------------------------
00005 // File and Version Information:
00006 //      $Id: CsPad2x2CommonModeV2.h 8034 2014-04-19 00:51:18Z dubrovin@SLAC.STANFORD.EDU $
00007 //
00008 // Description:
00009 //      Class CsPad2x2CommonModeV2.
00010 //
00011 //------------------------------------------------------------------------
00012 
00013 //-----------------
00014 // C/C++ Headers --
00015 //-----------------
00016 #include <string>
00017 
00018 //----------------------
00019 // Base Class Headers --
00020 //----------------------
00021 #include "pdscalibdata/CsPad2x2BaseV2.h" // Segs, Rows, Cols etc.
00022 #include "pdscalibdata/GlobalMethods.h"
00023 
00024 //-------------------------------
00025 // Collaborating Class Headers --
00026 //-------------------------------
00027 #include "ndarray/ndarray.h"
00028 // #include "pdsdata/psddl/cspad2x2.ddl.h"
00029 
00030 //------------------------------------
00031 // Collaborating Class Declarations --
00032 //------------------------------------
00033 #include "MsgLogger/MsgLogger.h"
00034 
00035 //              ---------------------
00036 //              -- Class Interface --
00037 //              ---------------------
00038 
00039 namespace pdscalibdata {
00040 
00041 /**
00042  *  This software was developed for the LCLS project.  If you use all or 
00043  *  part of it, please give an appropriate acknowledgment.
00044  *
00045  *  @see AdditionalClass
00046  *
00047  *  @version $Id: CsPad2x2CommonModeV2.h 8034 2014-04-19 00:51:18Z dubrovin@SLAC.STANFORD.EDU $
00048  *
00049  *  @author Mikhail Dubrovin
00050  */
00051 
00052 class CsPad2x2CommonModeV2: public CsPad2x2BaseV2 {
00053 public:
00054 
00055   const static size_t CMSize = 16; 
00056  
00057   typedef double pars_t;
00058 
00059   /// Default constructor
00060   CsPad2x2CommonModeV2 ()
00061   : CsPad2x2BaseV2 ()
00062   {
00063     std::fill_n(m_pars, int(CMSize), pars_t(0));
00064     // default common_mode parameters
00065     m_pars[0] = 1;   // Common mode algorithm number
00066     m_pars[1] = 25;  // Threshold; values below threshold are averaged
00067     m_pars[2] = 10;  // Maximal correction; correction is applied if it is less than this value
00068   }
00069 
00070   /// Read parameters from file
00071   CsPad2x2CommonModeV2 (const std::string& fname)
00072   : CsPad2x2BaseV2 ()
00073   {
00074     std::fill_n(m_pars, int(CMSize), pars_t(0));
00075     load_pars_from_file <pars_t> (fname, "common_mode", CMSize, m_pars, 2);
00076   }
00077 
00078   /// Destructor
00079   ~CsPad2x2CommonModeV2 (){}
00080 
00081   /// Access parameters
00082   ndarray<pars_t, 1> common_mode() const {
00083     return make_ndarray(m_pars, CMSize);
00084   }
00085 
00086   /// Print array of parameters
00087   void  print()
00088   {
00089     MsgLog("CsPad2x2CommonModeV2", info, "common_mode:\n" << common_mode());
00090   }
00091 
00092 protected:
00093 
00094 private:
00095 
00096   /// Data members  
00097   mutable pars_t m_pars[CMSize];
00098 
00099   //std::string m_comment; 
00100   
00101   /// Copy constructor and assignment are disabled by default
00102   CsPad2x2CommonModeV2 ( const CsPad2x2CommonModeV2& ) ;
00103   CsPad2x2CommonModeV2& operator = ( const CsPad2x2CommonModeV2& ) ;
00104 };
00105 
00106 } // namespace pdscalibdata
00107 
00108 #endif // PDSCALIBDATA_CSPAD2X2COMMONMODEV2_H

Generated on 19 Dec 2016 for PSANAmodules by  doxygen 1.4.7