Commit 95d63851 authored by Håkan Wennlöf's avatar Håkan Wennlöf
Browse files

Correcting documentation of new parameter lists for some functions

parent 8db6da13
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ namespace allpix {
    public:
        /**
         * Detector assembly constructor
         * @param reader  ConfigReader holding the full detector model configuration
         * @param header_config Configuration reference holding the unnamed section fo detector configuration
         */
        explicit DetectorAssembly(Configuration& header_config) {

@@ -81,7 +81,7 @@ namespace allpix {
    public:
        /**
         * Constructor for hybrid assemblies
         * @param reader  ConfigReader holding the full detector model configuration
         * @param header_config  Configuration reference holding the unnamed section fo detector configuration
         */
        explicit HybridAssembly(Configuration& header_config) : DetectorAssembly(header_config) {

@@ -152,7 +152,7 @@ namespace allpix {
    public:
        /**
         * Constructor for monolithic assemblies
         * @param reader  ConfigReader holding the full detector model configuration
         * @param header_config Configuration reference holding the unnamed section fo detector configuration
         */
        explicit MonolithicAssembly(Configuration& header_config) : DetectorAssembly(header_config) {

+1 −1
Original line number Diff line number Diff line
@@ -180,7 +180,7 @@ namespace allpix {
         * @param type Name of the model type
         * @param assembly Detector assembly object with information about ASIC and packaging
         * @param reader Configuration reader with description of the model
         * @param reader Configuration holding the empty section of the configuration file
         * @param header_config Configuration holding the empty section of the configuration file
         */
        explicit DetectorModel(std::string type,
                               std::shared_ptr<DetectorAssembly> assembly,
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ namespace allpix {
         * @param type   Name of the model type
         * @param assembly Detector assembly object with information about ASIC and packaging
         * @param reader Configuration reader with description of the model
         * @param header_config Configuration reference holding the unnamed section fo detector configuration
         */
        explicit HexagonalPixelDetectorModel(std::string type,
                                             const std::shared_ptr<DetectorAssembly>& assembly,
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ namespace allpix {
         * @param type Name of the model type
         * @param assembly Detector assembly object with information about ASIC and packaging
         * @param reader Configuration reader with description of the model
         * @param header_config Configuration reference holding the unnamed section fo detector configuration
         */
        explicit PixelDetectorModel(std::string type,
                                    const std::shared_ptr<DetectorAssembly>& assembly,
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ namespace allpix {
         * @param type Name of the model type
         * @param assembly Detector assembly object with information about ASIC and packaging
         * @param reader Configuration reader with description of the model
         * @param header_config Configuration reference holding the unnamed section fo detector configuration
         */
        explicit RadialStripDetectorModel(std::string type,
                                          const std::shared_ptr<DetectorAssembly>& assembly,