Skip to content
Snippets Groups Projects
Commit fb20cad8 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

corr: add forgotten file

parent 6ddf25ce
Branches
Tags
1 merge request!145new class SliceStack
Pipeline #40222 failed
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file Sample/Slice/SliceStack.h
//! @brief Defines class SliceStack.
//!
//! @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)
//
// ************************************************************************************************
#ifdef SWIG
#error no need to expose this header to Swig
#endif
#ifndef USER_API
#ifndef BORNAGAIN_SAMPLE_SLICE_SLICESTACK_H
#define BORNAGAIN_SAMPLE_SLICE_SLICESTACK_H
#include <vector>
class Slice;
//! A stack of Slice%s.
//!
//! @ingroup algorithms_internal
class SliceStack : public std::vector<Slice> {
public:
bool containsMagneticMaterial() const;
};
#endif // BORNAGAIN_SAMPLE_SLICE_SLICESTACK_H
#endif // USER_API
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment