move files
This commit is contained in:
parent
f1749a0af2
commit
1eb3e3be2d
@ -4,10 +4,10 @@ project(RWSim VERSION 1.0)
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
add_executable(rwsim main.cpp
|
||||
functions.cpp
|
||||
functions.h
|
||||
io.cpp
|
||||
io.h
|
||||
utils/functions.h
|
||||
utils/functions.cpp
|
||||
utils/io.cpp
|
||||
utils/io.h
|
||||
motions/base.cpp
|
||||
motions/base.h
|
||||
motions/random.cpp
|
||||
@ -16,10 +16,10 @@ add_executable(rwsim main.cpp
|
||||
times/base.h
|
||||
times/delta.cpp
|
||||
times/delta.h
|
||||
sims.cpp
|
||||
sims.h
|
||||
ranges.cpp
|
||||
ranges.h
|
||||
simulation/sims.cpp
|
||||
simulation/sims.h
|
||||
utils/ranges.cpp
|
||||
utils/ranges.h
|
||||
motions/tetrahedral.cpp
|
||||
motions/tetrahedral.h
|
||||
motions/isosmallangle.cpp
|
||||
|
4
main.cpp
4
main.cpp
@ -1,7 +1,7 @@
|
||||
|
||||
|
||||
#include "io.h"
|
||||
#include "sims.h"
|
||||
#include "utils/io.h"
|
||||
#include "simulation/sims.h"
|
||||
#include "motions/base.h"
|
||||
#include "times/delta.h"
|
||||
#include "times/lognormal.h"
|
||||
|
@ -1,6 +1,10 @@
|
||||
//
|
||||
// Created by dominik on 8/14/24.
|
||||
//
|
||||
#include "sims.h"
|
||||
#include "../motions/base.h"
|
||||
#include "../times/base.h"
|
||||
#include "../utils/functions.h"
|
||||
#include "../utils/ranges.h"
|
||||
#include "../utils/io.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
#include <unordered_map>
|
||||
@ -10,12 +14,6 @@
|
||||
#include <cmath>
|
||||
#include <chrono>
|
||||
|
||||
#include "motions/base.h"
|
||||
#include "times/base.h"
|
||||
#include "functions.h"
|
||||
#include "ranges.h"
|
||||
#include "sims.h"
|
||||
#include "io.h"
|
||||
|
||||
|
||||
void run_spectrum(std::unordered_map<std::string, double>& parameter, Motion& motion, Distribution& dist) {
|
@ -5,12 +5,12 @@
|
||||
#ifndef RWSIM_SIMS_H
|
||||
#define RWSIM_SIMS_H
|
||||
|
||||
#include "../motions/base.h"
|
||||
#include "../times/base.h"
|
||||
|
||||
#include <unordered_map>
|
||||
#include <string>
|
||||
|
||||
#include "motions/base.h"
|
||||
#include "times/base.h"
|
||||
|
||||
/**
|
||||
* @brief Run simulation for spectra
|
||||
*
|
@ -1,7 +1,3 @@
|
||||
//
|
||||
// Created by dominik on 8/14/24.
|
||||
//#
|
||||
|
||||
#include <vector>
|
||||
#include <array>
|
||||
#include <chrono>
|
Loading…
Reference in New Issue
Block a user