Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
cosmotools
CAMEL
Commits
ec1de3fb
Commit
ec1de3fb
authored
Jun 28, 2019
by
Plaszczynski Stephane
Browse files
Options
Browse Files
Download
Plain Diff
stupid merge
parents
d7d22dab
3399f7a4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
src/AbsRand/OofNoise.cc
src/AbsRand/OofNoise.cc
+2
-1
src/camel/MCMC/exec/mainMCMC.cc
src/camel/MCMC/exec/mainMCMC.cc
+8
-0
No files found.
src/AbsRand/OofNoise.cc
View file @
ec1de3fb
...
...
@@ -75,7 +75,8 @@ OofNoise::OofNoise(AbsGauss* r,double slope,double fmin,double fknee,double fsam
OofNoise
::~
OofNoise
(){
for
(
unsigned
i
=
0
;
i
<
ff
.
size
();
i
++
)
delete
ff
[
i
];
if
(
_r
)
delete
_r
;
if
(
_r
)
delete
_r
;
_r
=
NULL
;
}
...
...
src/camel/MCMC/exec/mainMCMC.cc
View file @
ec1de3fb
...
...
@@ -50,12 +50,20 @@ int main(int argc, char *argv[])
std
::
cout
<<
"output file "
+
fileName
+
" already exists: removing it"
<<
endl
;
remove_file
(
fileName
);
}
<<<<<<<
HEAD
string
base
=
BaseName
(
fileName
);
string
ar_file
=
string
(
"ar_vs_length_"
)
+
base
;
string
scale_file
=
string
(
"scale_"
)
+
base
;
string
cor_file
=
string
(
"last_step_"
)
+
base
;
=======
string
ar_file
=
string
(
"ar_vs_length_"
)
+
fileName
;
string
scale_file
=
string
(
"scale_"
)
+
fileName
;
string
cor_file
=
string
(
"last_step_"
)
+
fileName
;
>>>>>>>
3399
f7a40aaa872fc3de1dde13916af714ef0568
cout
<<
"output files:"
<<
endl
;
cout
<<
ar_file
<<
" "
<<
scale_file
<<
" "
<<
cor_file
<<
" "
<<
endl
;
cout
<<
"output files:"
<<
endl
;
cout
<<
ar_file
<<
" "
<<
scale_file
<<
" "
<<
cor_file
<<
" "
<<
endl
;
...
...
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