-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitignore
117 lines (89 loc) · 1.55 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
109
110
111
112
113
114
115
116
117
# Weight and geometry files #
# ######################### #
*.xml
*.class.C
*.root
# Exceptions #
# ########## #
# Validation references are allowed.
!*/validation/*.root
# Some tests and examples may need event files, classifiers and / or geometry files as input.
!*/tests/**
!*/examples/**
# Former default place to store geometry and weight files - Deprecated
!**/data/**
# Plotting output file #
# #################### #
*.png
*.svg
*.jpeg
*.jpg
*.pdf
*.eps
# Exceptions #
# ########## #
# Validation web page may contain some images
!validation/html_static/**
# The daq package contains some image files
!daq/**/doc/**
!daq/slc/extra/javalib/**
# the online book contains an image
!online_book/**
# External resources #
# ################## #
# Presumably manages its own .gitignore file
!genfit2/code2/**
# Local modifications #
# ################### #
/SConstruct
/.release
# Basf2 compile folders #
# ##################### #
/bin/
/build
/config.log
/data/
/include/
/lib/
/modules/
/.sconf_temp/
/.sconsign.dblite
/compile_commands.json
# Validation / Run artefacts #
# ########################## #
centraldb/
localdb/
Belle2FileCatalog.xml
/results/
/html/
/runtimes.dat
/runtimes-old.dat
# Python byte code #
# ################ #
*.py[cod]
# Auxilliary files #
# ################ #
*.orig
*.rej
*.bak
*.patch
# Editor temporaries #
# ################## #
.#*
*~
*#
*.swp
.ipynb_checkpoints/
-
._*
# Editor configuration #
# #################### #
.dir-locals.el
.project
.idea
.vscode
.gdb_history
# Compiler output #
# ############### #
*.o
*.os