-
Notifications
You must be signed in to change notification settings - Fork 500
/
.gitignore
108 lines (85 loc) · 1.25 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Compiled objects and modules
*.a
*.o
*.log
*.out
*.pkl
# Compiler python objects
*.pyc
# Python distribution
.settings/
dist/
openmc.egg-info/
# Inputs generated from Python API
examples/**/*.xml
# emacs and vim backups
*~
*.swp
# OpenMC statepoints
*.binary
# Documentation builds
docs/build
docs/source/_images/*.pdf
docs/source/_images/*.aux
docs/source/pythonapi/generated/
# Source build
build
# build from src/utils/setup.py
src/utils/build
# Test results error file
results_error.dat
inputs_error.dat
results_test.dat
# Test
.pytest_cache/
# HDF5 files
*.h5
# Build files
src/CMakeCache.txt
src/CMakeFiles/
src/bin/
src/cmake_install.cmake
src/install_manifest.txt
# Nuclear data
scripts/nndc
scripts/nndc_hdf5
scripts/wmp
scripts/JEFF32-ACE-*.zip
scripts/TSLs.tar.gz
scripts/jeff-3.2
scripts/jeff-3.2-hdf5
scripts/*.tar.*
scripts/G4EMLOW*/
# Images
*.png
*.ppm
*.voxel
*.vti
# PyCharm project configuration files
.idea
.idea/*
# IPython notebook checkpoints
.ipynb_checkpoints
# Cython files
*.c
*.html
*.so
.cache/
.tox/
.python-version
.coverage
htmlcov
# macOS
*.DS_Store
# Dynamic Library
*.dylib
*.lib
*.dll
# Visual Studio CMake project
.vs/
out/
CMakeSettings.json
# Visual Studio Code configuration files
.vscode/
# Python pickle files
*.pkl