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 64 65 66 67 68
#ifndef CondFormats_External_ECALDETID_H
#define CondFormats_External_ECALDETID_H

#include <boost/serialization/base_object.hpp>
#include <boost/serialization/nvp.hpp>
#include <boost/serialization/split_free.hpp>

// std::vector used in DataFormats/EcalDetId/interface/EcalContainer.h
#include <boost/serialization/vector.hpp>
#include <boost/serialization/string.hpp>
#include <boost/serialization/map.hpp>

#include "DataFormats/EcalDetId/interface/EBDetId.h"
#include "DataFormats/EcalDetId/interface/EEDetId.h"
#include "DataFormats/EcalDetId/interface/EcalContainer.h"

// for base class
#include "CondFormats/External/interface/DetID.h"

namespace boost {
  namespace serialization {

    /*
 * Note regarding object tracking: all autos used here
 * must resolve to untracked types, since we use local
 * variables in the stack which could end up with the same
 * address. For the moment, all types resolved by auto here
 * are primitive types, which are untracked by default
 * by Boost Serialization.
 */

    // DataFormats/EcalDetId/interface/EBDetId.h
    template <class Archive>
    void serialize(Archive& ar, EBDetId& obj, const unsigned int) {
      ar& boost::serialization::make_nvp("DetId", boost::serialization::base_object<DetId>(obj));
      ;
    }

    // DataFormats/EcalDetId/interface/EEDetId.h
    template <class Archive>
    void serialize(Archive& ar, EEDetId& obj, const unsigned int) {
      ar& boost::serialization::make_nvp("DetId", boost::serialization::base_object<DetId>(obj));
      ;
    }

    // DataFormats/EcalDetId/interface/EcalContainer.h
    template <class Archive, typename DetIdT, typename T>
    void save(Archive& ar, const EcalContainer<DetIdT, T>& obj, const unsigned int) {
      ar& boost::serialization::make_nvp("m_items", obj.items());
    }

    template <class Archive, typename DetIdT, typename T>
    void load(Archive& ar, EcalContainer<DetIdT, T>& obj, const unsigned int) {
      // FIXME: avoid copying if we are OK getting a non-const reference
      typename EcalContainer<DetIdT, T>::Items m_items;
      ar& boost::serialization::make_nvp("m_items", m_items);
      obj.setItems(m_items);
    }

    template <class Archive, typename DetIdT, typename T>
    void serialize(Archive& ar, EcalContainer<DetIdT, T>& obj, const unsigned int v) {
      split_free(ar, obj, v);
    }

  }  // namespace serialization
}  // namespace boost

#endif