Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
partons
core
numa
Commits
3ad434f1
Commit
3ad434f1
authored
Dec 08, 2017
by
Nabil Chouika
Browse files
remove old files
parent
2b15d219
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/NumA/radon_inverse/DDInitialGenerator.h
deleted
100644 → 0
View file @
2b15d219
#ifndef DD_INITIAL_GENERATOR_H
#define DD_INITIAL_GENERATOR_H
/**
* @file DDInitialGenerator.h
* @author Cedric MEZRAG
* @date 18 March 2016
* @version 1.0
*
* @class DDInitialGenerator
*
* @brief
*/
class
DDInitialGenerator
{
public:
DDInitialGenerator
();
virtual
~
DDInitialGenerator
();
void
SetNLine
(
const
int
);
/// Set the step for DD discretisation
void
SetNColumn
(
const
int
);
/// Set the step for DD discretisation
private:
int
NLine
;
/// Number of line in the rhombus
int
NColumn
;
/// Number of column in the rhombus
};
#endif
/* DD_INITIAL_GENERATOR_H */
src/NumA/radon_inverse/DDInitialGenerator.cpp
deleted
100644 → 0
View file @
2b15d219
#include "../../../include/NumA/radon_inverse/DDInitialGenerator.h"
// Creation of the constructor
DDInitialGenerator
::
DDInitialGenerator
()
:
NLine
(
0
),
NColumn
(
0
)
{
}
// Destructor
DDInitialGenerator
::~
DDInitialGenerator
()
{
}
void
DDInitialGenerator
::
SetNLine
(
const
int
I
)
{
NLine
=
I
;
}
void
DDInitialGenerator
::
SetNColumn
(
const
int
J
)
{
NColumn
=
J
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment