• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

BlueBrain / MorphIO / 6533524408

16 Oct 2023 12:24PM UTC coverage: 76.051% (-0.02%) from 76.073%
6533524408

push

github

mgeplf
fix test_root_node_split

1972 of 2593 relevant lines covered (76.05%)

903.23 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/mut/dendritic_spine.cpp
1
/* Copyright (c) 2013-2023, EPFL/Blue Brain Project
2
 *
3
 * SPDX-License-Identifier: Apache-2.0
4
 */
5
#include <morphio/mut/dendritic_spine.h>
6

7
namespace morphio {
8
namespace mut {
9

10
DendriticSpine::DendriticSpine()
×
11
    : Morphology() {
×
12
    _cellProperties->_cellFamily = CellFamily::SPINE;
×
13
    _cellProperties->_version = {"h5", 1, 3};
×
14
}
×
15

16
DendriticSpine::DendriticSpine(const std::string& source)
×
17
    : Morphology(source) {
×
18
    if (_cellProperties->_cellFamily != CellFamily::SPINE) {
×
19
        throw(RawDataError(
20
            "File: " + source +
×
21
            " is not a DendriticSpine file. It should be a H5 file the cell type SPINE."));
×
22
    }
23
}
×
24

25
std::vector<Property::DendriticSpine::PostSynapticDensity>&
26
DendriticSpine::postSynapticDensity() noexcept {
×
27
    return _dendriticSpineLevel._post_synaptic_density;
×
28
}
29

30
const std::vector<Property::DendriticSpine::PostSynapticDensity>&
31
DendriticSpine::postSynapticDensity() const noexcept {
×
32
    return _dendriticSpineLevel._post_synaptic_density;
×
33
}
34

35
}  // namespace mut
36
}  // namespace morphio
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc