From 9fcbca95e321773d1a906d232be24162a5ce5727 Mon Sep 17 00:00:00 2001
From: Whitney Armstrong <warmstrong@anl.gov>
Date: Mon, 21 Sep 2020 16:52:20 -0500
Subject: [PATCH] 	new file:   .clang-format 	new file:   .gitignore

---
 .clang-format | 10 ++++++++++
 .gitignore    | 42 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)
 create mode 100644 .clang-format
 create mode 100644 .gitignore

diff --git a/.clang-format b/.clang-format
new file mode 100644
index 00000000..11bdfea9
--- /dev/null
+++ b/.clang-format
@@ -0,0 +1,10 @@
+---
+BasedOnStyle:  LLVM
+BreakConstructorInitializersBeforeComma: true
+ConstructorInitializerAllOnOneLineOrOnePerLine: true
+Cpp11BracedListStyle: true
+Standard: Cpp11
+#SpaceBeforeParens: ControlStatements
+SpaceAfterControlStatementKeyword: true
+PointerBindsToType: true
+...
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..fc58c11b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,42 @@
+# Compiled Object files
+*.slo
+*.lo
+*.o
+
+# Compiled Dynamic libraries
+*.so
+*.dylib
+
+# Compiled Static libraries
+*.lai
+*.la
+*.a
+
+# build trees
+DEBUG*/*
+BUILD*/*
+RELEASE*/*
+TEST*/*
+
+# cmake
+CMakeCache.txt
+CMakeFiles
+Makefile
+cmake_install.cmake
+install_manifest.txt
+
+# vim 
+~*
+*.swp
+*.swo
+
+# python
+__pycache__/
+*.py[cod]
+*$py.class
+.ipynb_checkpoints
+
+# test for calorimeter
+calorimeters/test/
+*.d
+*.pcm
-- 
GitLab