File: SampleValidator.cpp

package info (click to toggle)
bornagain 23.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 103,948 kB
  • sloc: cpp: 423,131; python: 40,997; javascript: 11,167; awk: 630; sh: 318; ruby: 173; xml: 130; makefile: 51; ansic: 24
file content (57 lines) | stat: -rw-r--r-- 2,486 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//  ************************************************************************************************
//
//  BornAgain: simulate and fit reflection and scattering
//
//! @file      GUI/Model/Sample/SampleValidator.cpp
//! @brief     Implements class SampleValidator.
//!
//! @homepage  http://www.bornagainproject.org
//! @license   GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors   Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
//  ************************************************************************************************

#include "GUI/Model/Sample/SampleValidator.h"
#include "Base/Util/Assert.h"
#include "GUI/Model/Sample/CompoundItem.h"
#include "GUI/Model/Sample/CoreAndShellItem.h"
#include "GUI/Model/Sample/InterferenceItems.h"
#include "GUI/Model/Sample/LayerItem.h"
#include "GUI/Model/Sample/ParticleLayoutItem.h"
#include "GUI/Model/Sample/SampleItem.h"

QString SampleValidator::isValidSample(const SampleItem* sample)
{
    QString messages;
    const auto append = [&](const QString& m) { messages.append("* " + m + "\n"); };

    std::vector<LayerItem*> layers = sample->uniqueLayerItems();

    if (layers.empty())
        append("Sample should contain at least one layer.");
    if (layers.size() == 1)
        if (layers.front()->layoutItems().empty())
            append("The single layer in your Sample should contain a particle layout.");

    for (const auto* layer : layers) {
        for (const auto* layout : layer->layoutItems()) {
            if (layout->itemsWithParticles().empty())
                append("Particle layout doesn't contain any particles.");
            for (const auto* particle : layout->containedItemsWithParticles()) {
                if (const auto* p = dynamic_cast<const CoreAndShellItem*>(particle)) {
                    if (!p->coreItem())
                        append("Sim/shell particle doesn't have core defined.");
                    if (!p->shellItem())
                        append("Sim/shell particle doesn't have shell defined.");
                } else if (const auto* p = dynamic_cast<const CompoundItem*>(particle))
                    if (p->itemsWithParticles().empty())
                        append("Particle composition doesn't have any particles.");
            }
        }
    }
    if (!messages.isEmpty())
        messages = "Cannot setup DWBA simulation for given Sample.\n" + messages;

    return messages;
}