diff --git a/makefile b/makefile index 4c79519fffcfcc1a0794be1903d46e02365e45ef..5e0bc1431a2cb87ce7b089e47b10d8f1a1edce80 100644 --- a/makefile +++ b/makefile @@ -1,3 +1,26 @@ +######################################################################## +# +# Copyright 2015 Johns Hopkins University +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Contact: turbulence@pha.jhu.edu +# Website: http://turbulence.pha.jhu.edu/ +# +######################################################################## + + + MPICXX = mpicxx LINKER = mpicxx DEFINES = -DNDEBUG diff --git a/src/Morton_shuffler.cpp b/src/Morton_shuffler.cpp index 7de49c5029d46735e798a7a83c75fe0d9f3f951a..7d97447c371d97385d5afc1e673da40c3c85ad6f 100644 --- a/src/Morton_shuffler.cpp +++ b/src/Morton_shuffler.cpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include "Morton_shuffler.hpp" #include <iostream> diff --git a/src/Morton_shuffler.hpp b/src/Morton_shuffler.hpp index 08825cbd3f3267dae910556d75b7251fc219e5f8..5aefc8a32c0e6f4f3da5e1619ef51aa72b26d7d0 100644 --- a/src/Morton_shuffler.hpp +++ b/src/Morton_shuffler.hpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include <stdio.h> #include <stdlib.h> #include <iostream> diff --git a/src/NS.cpp b/src/NS.cpp index b8fe5b9ce1c78eabeab15ab5da3e19337403d7d4..f63716d94c711b874187fa1b455857e229bf06e1 100644 --- a/src/NS.cpp +++ b/src/NS.cpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include "Morton_shuffler.hpp" #include <iostream> diff --git a/src/RMHD_converter.cpp b/src/RMHD_converter.cpp index 3f20d39cff7a35e99f94783687c6d2e0b8a146b2..f5221fe3f7f060744721ccb63dcb541a9de85631 100644 --- a/src/RMHD_converter.cpp +++ b/src/RMHD_converter.cpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include "p3DFFT_to_iR.hpp" #include "Morton_shuffler.hpp" #include <iostream> diff --git a/src/base.hpp b/src/base.hpp index 31c9987685b91208e9137a97a79f63845806ad5d..c071b4af8b117beb365c5ce5cc734f7fc3bd6ddb 100644 --- a/src/base.hpp +++ b/src/base.hpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include <mpi.h> #include <stdarg.h> #include <iostream> diff --git a/src/fftwf_tools.cpp b/src/fftwf_tools.cpp index 5743423a26e07ac8f5f36657d4bdbfd0ec8a1365..67d7a81850da22824339c6cc261f9c67a5fc1cb2 100644 --- a/src/fftwf_tools.cpp +++ b/src/fftwf_tools.cpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include <stdlib.h> #include <algorithm> #include <iostream> diff --git a/src/fftwf_tools.hpp b/src/fftwf_tools.hpp index f39ed5277d2bada764f6c8b89b17841b121dbf4d..0867c64b36e189686f3de04c9856405ddcf6d847 100644 --- a/src/fftwf_tools.hpp +++ b/src/fftwf_tools.hpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include <mpi.h> #include <fftw3-mpi.h> #include "field_descriptor.hpp" diff --git a/src/field_descriptor.cpp b/src/field_descriptor.cpp index 35341f960c9b19118c00a0e47d5d78173a51f446..6620f7b50d8161ee51327627edee1c256309c8d5 100644 --- a/src/field_descriptor.cpp +++ b/src/field_descriptor.cpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include <stdlib.h> #include <algorithm> #include <iostream> diff --git a/src/field_descriptor.hpp b/src/field_descriptor.hpp index 9960e0efc660e7cb8f90ac397ea08dc53f9ea1b7..022a8e8ec2a259fca56f5bd8e2628bb81346c482 100644 --- a/src/field_descriptor.hpp +++ b/src/field_descriptor.hpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include <mpi.h> #include <fftw3-mpi.h> diff --git a/src/full.cpp b/src/full.cpp index aa0c4ef16d280c97e015f87c4f977f16dc45fbc8..26c9cd8c92d8d53d96b59af608733df39e114b97 100644 --- a/src/full.cpp +++ b/src/full.cpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include "p3DFFT_to_iR.hpp" #include "Morton_shuffler.hpp" #include <iostream> diff --git a/src/p3DFFT_to_iR.cpp b/src/p3DFFT_to_iR.cpp index 72c389903155c48f7b82570465e569d8ef9268c4..68af7d2b3863b3016275656373506df46e0978b5 100644 --- a/src/p3DFFT_to_iR.cpp +++ b/src/p3DFFT_to_iR.cpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include "base.hpp" #include "p3DFFT_to_iR.hpp" #include <string> diff --git a/src/p3DFFT_to_iR.hpp b/src/p3DFFT_to_iR.hpp index a3adb827a58736c6ba8d944c2a7c93af7f7fef60..83641c6e804f2ddc4d746d843938c30d1517776f 100644 --- a/src/p3DFFT_to_iR.hpp +++ b/src/p3DFFT_to_iR.hpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include <stdio.h> #include <stdlib.h> #include <iostream> diff --git a/src/test_field_descriptor.cpp b/src/test_field_descriptor.cpp index 6dcb2621edbb78c99ec40630a3d953721f808378..d99c4881ab2e7bcd4b65674bfe29f18514516e67 100644 --- a/src/test_field_descriptor.cpp +++ b/src/test_field_descriptor.cpp @@ -1,3 +1,24 @@ +/*********************************************************************** +* +* Copyright 2015 Johns Hopkins University +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +* Contact: turbulence@pha.jhu.edu +* Website: http://turbulence.pha.jhu.edu/ +* +************************************************************************/ + #include "p3DFFT_to_iR.hpp" #include "Morton_shuffler.hpp" #include <iostream>