Skip to content

Commit 0efc228

Browse files
author
Jason G. Tong
committed
Merge branch 'main' into jgt/easywave
2 parents 9d7df8e + 8be8f0d commit 0efc228

File tree

125 files changed

+2737
-2248
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+2737
-2248
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.tgz filter=lfs diff=lfs merge=lfs -text

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Created by https://www.gitignore.io/api/c++
2+
3+
### C++ ###
4+
# Prerequisites
5+
*.d
6+
7+
# Compiled Object files
8+
*.slo
9+
*.lo
10+
*.o
11+
*.obj
12+
13+
# Precompiled Headers
14+
*.gch
15+
*.pch
16+
17+
# Compiled Dynamic libraries
18+
*.so
19+
*.dylib
20+
*.dll
21+
22+
# Fortran module files
23+
*.mod
24+
*.smod
25+
26+
# Compiled Static libraries
27+
*.lai
28+
*.la
29+
*.a
30+
*.lib
31+
32+
# Executables
33+
*.exe
34+
*.out
35+
*.app
36+
/*/*/*/qs
37+
38+
# Vim swap
39+
*.swp
40+
41+
# This is a comment
42+
# Ignore target at the top level
43+
/build/
44+
/Build/
45+
/bin/
46+
/Bin/
47+
# Ignore child project's targets as well
48+
/*/build/
49+
/*/Build/
50+
/*/bin/
51+
/*/Bin/
52+
53+
# And any grandchildren ...
54+
/*/*/build/
55+
/*/*/Build/
56+
/*/*/bin/
57+
/*/*/Bin/
58+
59+
# Or you can do:
60+
*build*/
61+
*Build*/
62+
*bin*/
63+
*Bin*/
64+
65+
# which matches 'target' in any sub folder
66+
*.syntastic_cpp_config

QuickSilver/CUDA/src/.depend

Whitespace-only changes.

QuickSilver/CUDA/src/EnergySpectrum.hh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
#define ENERGYSPECTRUM_HH
33
#include <string>
44
#include <vector>
5+
#include <cstdint>
56

67
class MonteCarlo;
78

89
class EnergySpectrum
910
{
10-
public:
11-
EnergySpectrum(std::string name, uint64_t size) : _fileName(std::move(name)), _censusEnergySpectrum(size,0) {};
12-
void UpdateSpectrum(MonteCarlo* monteCarlo);
13-
void PrintSpectrum(MonteCarlo* monteCarlo);
11+
public:
12+
EnergySpectrum(std::string name, uint64_t size) : _fileName(std::move(name)), _censusEnergySpectrum(size, 0){};
13+
void UpdateSpectrum(MonteCarlo *monteCarlo);
14+
void PrintSpectrum(MonteCarlo *monteCarlo);
1415

15-
private:
16-
std::string _fileName;
17-
std::vector<uint64_t> _censusEnergySpectrum;
16+
private:
17+
std::string _fileName;
18+
std::vector<uint64_t> _censusEnergySpectrum;
1819
};
1920

2021
#endif
21-

0 commit comments

Comments
 (0)