LSSTApplications  21.0.0+1b62c9342b,21.0.0+45a059f35e,21.0.0-1-ga51b5d4+ceb9cf20a3,21.0.0-18-gaffd721+9e5b25d042,21.0.0-2-g103fe59+513edb8842,21.0.0-2-g1367e85+d9bb5204cb,21.0.0-2-g2909d54+45a059f35e,21.0.0-2-g45278ab+1b62c9342b,21.0.0-2-g4bc9b9f+71b33656bf,21.0.0-2-g5242d73+d9bb5204cb,21.0.0-2-g54e2caa+2eef0310e6,21.0.0-2-g66bcc37+d6fe391fa3,21.0.0-2-g7f82c8f+8938dec807,21.0.0-2-g8dde007+7bfb5851c8,21.0.0-2-g8f08a60+73884b2cf5,21.0.0-2-g973f35b+03b9a35142,21.0.0-2-ga326454+8938dec807,21.0.0-2-ga63a54e+935c8992c7,21.0.0-2-ga885a99+9a92674037,21.0.0-2-gc738bc1+ebe6cc8da6,21.0.0-2-gde069b7+5a8f2956b8,21.0.0-2-ge17e5af+d9bb5204cb,21.0.0-2-ge712728+0698132099,21.0.0-2-gecfae73+85cfcaf62c,21.0.0-2-gfc62afb+d9bb5204cb,21.0.0-21-g006371a9+aa7b4785b3,21.0.0-3-g4c5b185+4e2de95c30,21.0.0-3-g6d51c4a+d6fe391fa3,21.0.0-3-gaa929c8+fca53d2b73,21.0.0-3-gd222c45+afc8332dbe,21.0.0-3-gd5de2f2+d6fe391fa3,21.0.0-4-g3300ddd+1b62c9342b,21.0.0-4-g8a80011+06a34d01f4,21.0.0-5-gb7080ec+16cb3ec261,21.0.0-5-gcff38f6+f4fb272da2,21.0.0-6-gd3283ba+fca53d2b73,21.0.0-8-g19111d86+6561528872,21.0.0-8-gd9c33f4a0+b58bb1f4d6,w.2021.03
LSSTDataManagementBasePackage
Persistable.cc
Go to the documentation of this file.
1 #include <memory>
2 
4 
5 namespace lsst {
6 namespace afw {
7 namespace table {
8 namespace io {
9 
17 template <typename T>
19  auto result = std::dynamic_pointer_cast<T>(ptr);
20  if (!result) {
21  throw LSST_EXCEPT(pex::exceptions::TypeError, "Dynamic pointer cast failed");
22  }
23  return result;
24 }
25 
26 } // namespace io
27 } // namespace table
28 } // namespace afw
29 } // namespace lsst
std::shared_ptr
STL class.
lsst::afw
Definition: imageAlgorithm.dox:1
Persistable.h
ptr
uint64_t * ptr
Definition: RangeSet.cc:88
result
py::object result
Definition: _schema.cc:429
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
LSST_EXCEPT
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
lsst::afw::table::io::PersistableFacade::dynamicCast
static std::shared_ptr< T > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18
lsst.pex::exceptions::TypeError
Reports errors from accepting an object of an unexpected or inappropriate type.
Definition: Runtime.h:167