123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /******************************************************************************
- *
- * Copyright (C) 2021 by
- * The Salk Institute for Biological Studies
- *
- * Use of this source code is governed by an MIT-style
- * license that can be found in the LICENSE file or at
- * https://opensource.org/licenses/MIT.
- *
- ******************************************************************************/
- #ifndef API_GEN_RELEASE_PATTERN_H
- #define API_GEN_RELEASE_PATTERN_H
- #include "api/api_common.h"
- #include "api/base_data_class.h"
- namespace MCell {
- namespace API {
- class ReleasePattern;
- class PythonExportContext;
- #define RELEASE_PATTERN_CTOR() \
- ReleasePattern( \
- const std::string& name_ = STR_UNSET, \
- const double release_interval_ = TIME_INFINITY, \
- const double train_duration_ = TIME_INFINITY, \
- const double train_interval_ = TIME_INFINITY, \
- const int number_of_trains_ = 1 \
- ) { \
- class_name = "ReleasePattern"; \
- name = name_; \
- release_interval = release_interval_; \
- train_duration = train_duration_; \
- train_interval = train_interval_; \
- number_of_trains = number_of_trains_; \
- postprocess_in_ctor(); \
- check_semantics(); \
- } \
- ReleasePattern(DefaultCtorArgType) : \
- GenReleasePattern(DefaultCtorArgType()) { \
- set_all_attributes_as_default_or_unset(); \
- set_all_custom_attributes_to_default(); \
- }
- class GenReleasePattern: public BaseDataClass {
- public:
- GenReleasePattern() {
- }
- GenReleasePattern(DefaultCtorArgType) {
- }
- void postprocess_in_ctor() override {}
- void check_semantics() const override;
- void set_initialized() override;
- void set_all_attributes_as_default_or_unset() override;
- std::shared_ptr<ReleasePattern> copy_release_pattern() const;
- std::shared_ptr<ReleasePattern> deepcopy_release_pattern(py::dict = py::dict()) const;
- virtual bool __eq__(const ReleasePattern& other) const;
- virtual bool eq_nonarray_attributes(const ReleasePattern& other, const bool ignore_name = false) const;
- bool operator == (const ReleasePattern& other) const { return __eq__(other);}
- bool operator != (const ReleasePattern& other) const { return !__eq__(other);}
- std::string to_str(const bool all_details=false, const std::string ind="") const override;
- std::string export_to_python(std::ostream& out, PythonExportContext& ctx) override;
- // --- attributes ---
- double release_interval;
- virtual void set_release_interval(const double new_release_interval_) {
- if (initialized) {
- throw RuntimeError("Value 'release_interval' of object with name " + name + " (class " + class_name + ") "
- "cannot be set after model was initialized.");
- }
- cached_data_are_uptodate = false;
- release_interval = new_release_interval_;
- }
- virtual double get_release_interval() const {
- cached_data_are_uptodate = false; // arrays and other data can be modified through getters
- return release_interval;
- }
- double train_duration;
- virtual void set_train_duration(const double new_train_duration_) {
- if (initialized) {
- throw RuntimeError("Value 'train_duration' of object with name " + name + " (class " + class_name + ") "
- "cannot be set after model was initialized.");
- }
- cached_data_are_uptodate = false;
- train_duration = new_train_duration_;
- }
- virtual double get_train_duration() const {
- cached_data_are_uptodate = false; // arrays and other data can be modified through getters
- return train_duration;
- }
- double train_interval;
- virtual void set_train_interval(const double new_train_interval_) {
- if (initialized) {
- throw RuntimeError("Value 'train_interval' of object with name " + name + " (class " + class_name + ") "
- "cannot be set after model was initialized.");
- }
- cached_data_are_uptodate = false;
- train_interval = new_train_interval_;
- }
- virtual double get_train_interval() const {
- cached_data_are_uptodate = false; // arrays and other data can be modified through getters
- return train_interval;
- }
- int number_of_trains;
- virtual void set_number_of_trains(const int new_number_of_trains_) {
- if (initialized) {
- throw RuntimeError("Value 'number_of_trains' of object with name " + name + " (class " + class_name + ") "
- "cannot be set after model was initialized.");
- }
- cached_data_are_uptodate = false;
- number_of_trains = new_number_of_trains_;
- }
- virtual int get_number_of_trains() const {
- cached_data_are_uptodate = false; // arrays and other data can be modified through getters
- return number_of_trains;
- }
- // --- methods ---
- }; // GenReleasePattern
- class ReleasePattern;
- py::class_<ReleasePattern> define_pybinding_ReleasePattern(py::module& m);
- } // namespace API
- } // namespace MCell
- #endif // API_GEN_RELEASE_PATTERN_H
|