Commit a552a3f8 authored by Paul Schütze's avatar Paul Schütze
Browse files

Merge branch 'fix-spelling' into 'master'

fix spelling

See merge request allpix-squared/allpix-squared!1113
parents 5fbe2f08 56b6b9dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ namespace allpix {
         * @brief Helper class to keep track of key access
         *
         * This class holds all configuration keys in a map together with an atomic boolean marking whether they have been
         * accessed already. This allows to find out whick keys have not been accessed at all. This wrapper allows to use
         * accessed already. This allows to find out which keys have not been accessed at all. This wrapper allows to use
         * atomics for non-locking access but requires to register all keys beforehand.
         */
        class AccessMarker {
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ void WeightingPotentialReaderModule::initialize() {

        auto implant = (implants.empty() ? ROOT::Math::XYZVector(model->getPixelSize().x(), model->getPixelSize().y(), 0)
                                         : implants.front().getSize());
        // This module currently only works with pad definition, i.e. 2D implant deinition:
        // This module currently only works with pad definition, i.e. 2D implant definition:
        if(implant.z() > std::numeric_limits<double>::epsilon()) {
            throw InvalidValueError(
                config_, "model", "model 'pad' can only be used with 2D implants, but non-zero thickness found");
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ int main(int argc, char** argv) {

        auto implant = (implants.empty() ? ROOT::Math::XYZVector(model->getPixelSize().x(), model->getPixelSize().y(), 0)
                                         : implants.front().getSize());
        // This module currently only works with pad definition, i.e. 2D implant deinition:
        // This module currently only works with pad definition, i.e. 2D implant definition:
        if(implant.z() > std::numeric_limits<double>::epsilon()) {
            throw std::invalid_argument("Generator can only be used with 2D implants, but non-zero thickness found");
        }