mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
Files copied from cosmotools with the following shell code:
cosmoToolsDir=/path/to/cosmotools
cp $cosmoToolsDir/algorithms/halofinder/*.{cxx,h} .
cp $cosmoToolsDir/common/CosmoTools*.h .
for file in `ls *.{cxx,h}`; do
expand -t 8 $file | sed -e :a -e '/./,$!d;/^\n*$/{$d;N;};/\n$/ba' - > ${file}.bak
mv ${file}.bak $file
done