H5DataTypes/src/CsPadPedestalsV1.cpp

Go to the documentation of this file.
00001 //--------------------------------------------------------------------------
00002 // File and Version Information:
00003 //      $Id: CsPadPedestalsV1.cpp 5793 2013-03-19 18:41:33Z salnikov@SLAC.STANFORD.EDU $
00004 //
00005 // Description:
00006 //      Class CsPadPedestalsV1...
00007 //
00008 // Author List:
00009 //      Andrei Salnikov
00010 //
00011 //------------------------------------------------------------------------
00012 
00013 //-----------------------
00014 // This Class's Header --
00015 //-----------------------
00016 #include "H5DataTypes/CsPadPedestalsV1.h"
00017 
00018 //-----------------
00019 // C/C++ Headers --
00020 //-----------------
00021 #include <algorithm>
00022 
00023 //-------------------------------
00024 // Collaborating Class Headers --
00025 //-------------------------------
00026 #include "ErrSvc/Issue.h"
00027 #include "hdf5pp/ArrayType.h"
00028 #include "hdf5pp/CompoundType.h"
00029 #include "hdf5pp/TypeTraits.h"
00030 #include "H5DataTypes/H5DataUtils.h"
00031 #include "MsgLogger/MsgLogger.h"
00032 
00033 //-----------------------------------------------------------------------
00034 // Local Macros, Typedefs, Structures, Unions and Forward Declarations --
00035 //-----------------------------------------------------------------------
00036 
00037 namespace {
00038 
00039   class BadShape: public ErrSvc::Issue {
00040   public:
00041     BadShape(const ErrSvc::Context& ctx) : ErrSvc::Issue(ctx, "Illegal shape of data array") {}
00042   };
00043 
00044 }
00045 
00046 //              ----------------------------------------
00047 //              -- Public Function Member Definitions --
00048 //              ----------------------------------------
00049 
00050 namespace H5DataTypes {
00051 
00052 //----------------
00053 // Constructors --
00054 //----------------
00055 CsPadPedestalsV1::CsPadPedestalsV1 ()
00056 {
00057   // fill all pedestals with zeros
00058   std::fill_n(&pedestals[0][0][0][0], int(DataType::Size), 0.0f);
00059 }
00060 
00061 CsPadPedestalsV1::CsPadPedestalsV1 (const DataType& data) 
00062 { 
00063   const ndarray<DataType::pedestal_t, 4>& pdata = data.pedestals();
00064 
00065   // verify that data shape is what we expect
00066   const unsigned* shape = pdata.shape();
00067   if (shape[0] != DataType::Quads or shape[1] != DataType::Sections or
00068       shape[2] != DataType::Columns or shape[3] != DataType::Rows) {
00069     throw BadShape(ERR_LOC);
00070   }
00071 
00072   const DataType::pedestal_t* src = &pdata[0][0][0][0];
00073   DataType::pedestal_t* dst = &pedestals[0][0][0][0];
00074   std::copy(src, src+int(DataType::Size), dst );
00075 }
00076 
00077 //--------------
00078 // Destructor --
00079 //--------------
00080 CsPadPedestalsV1::~CsPadPedestalsV1 ()
00081 {
00082 }
00083 
00084 
00085 hdf5pp::Type
00086 CsPadPedestalsV1::stored_type()
00087 {
00088   return native_type() ;
00089 }
00090 
00091 hdf5pp::Type
00092 CsPadPedestalsV1::native_type()
00093 {
00094   hsize_t dims[4] = { DataType::Quads,
00095                       DataType::Sections,
00096                       DataType::Columns,
00097                       DataType::Rows};
00098   hdf5pp::ArrayType arrType = 
00099     hdf5pp::ArrayType::arrayType(hdf5pp::TypeTraits<DataType::pedestal_t>::native_type(), 4, dims) ;
00100   return arrType;
00101 }
00102 
00103 void
00104 CsPadPedestalsV1::store( const DataType& data, hdf5pp::Group grp, const std::string& fileName )
00105 {
00106   CsPadPedestalsV1 obj(data);
00107   hdf5pp::DataSet ds = storeDataObject ( obj, "pedestals", grp ) ;
00108 
00109   // add attributes
00110   ds.createAttr<const char*>("source").store(fileName.c_str());
00111 }
00112 
00113 } // namespace H5DataTypes

Generated on 19 Dec 2016 for PSDMSoftware by  doxygen 1.4.7