From 479346adafabf53478ae995d9e27e01c18b7fa9c Mon Sep 17 00:00:00 2001 From: Matthieu Dorier Date: Tue, 24 Apr 2018 17:14:37 +0200 Subject: [PATCH] added copyright header --- include/hepnos/DataSet.hpp | 5 +++++ include/hepnos/DataStore.hpp | 5 +++++ include/hepnos/Demangle.hpp | 5 +++++ include/hepnos/Event.hpp | 5 +++++ include/hepnos/EventNumber.hpp | 5 +++++ include/hepnos/Exception.hpp | 5 +++++ include/hepnos/KeyValueContainer.hpp | 5 +++++ include/hepnos/Run.hpp | 5 +++++ include/hepnos/RunNumber.hpp | 5 +++++ include/hepnos/RunSet.hpp | 5 +++++ include/hepnos/SubRun.hpp | 5 +++++ include/hepnos/SubRunNumber.hpp | 5 +++++ src/DataSet.cpp | 5 +++++ src/DataStore.cpp | 5 +++++ src/Event.cpp | 5 +++++ src/Run.cpp | 5 +++++ src/RunSet.cpp | 5 +++++ src/SubRun.cpp | 6 ++++++ src/private/DataSetImpl.hpp | 5 +++++ src/private/DataStoreImpl.hpp | 5 +++++ src/private/EventImpl.hpp | 5 +++++ src/private/KeyTypes.hpp | 5 +++++ src/private/RunImpl.hpp | 5 +++++ src/private/RunSetImpl.hpp | 5 +++++ src/private/SubRunImpl.hpp | 5 +++++ 25 files changed, 126 insertions(+) diff --git a/include/hepnos/DataSet.hpp b/include/hepnos/DataSet.hpp index 009b512..2133e27 100644 --- a/include/hepnos/DataSet.hpp +++ b/include/hepnos/DataSet.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_DATA_SET_H #define __HEPNOS_DATA_SET_H diff --git a/include/hepnos/DataStore.hpp b/include/hepnos/DataStore.hpp index 7fe5d0d..0b190c9 100644 --- a/include/hepnos/DataStore.hpp +++ b/include/hepnos/DataStore.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_DATA_STORE_H #define __HEPNOS_DATA_STORE_H diff --git a/include/hepnos/Demangle.hpp b/include/hepnos/Demangle.hpp index b4a3eb8..fb19fb7 100644 --- a/include/hepnos/Demangle.hpp +++ b/include/hepnos/Demangle.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_DEMANGLE_H #define __HEPNOS_DEMANGLE_H diff --git a/include/hepnos/Event.hpp b/include/hepnos/Event.hpp index 4700bb4..2e4d51e 100644 --- a/include/hepnos/Event.hpp +++ b/include/hepnos/Event.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_EVENT_H #define __HEPNOS_EVENT_H diff --git a/include/hepnos/EventNumber.hpp b/include/hepnos/EventNumber.hpp index e07ee92..8e13b2c 100644 --- a/include/hepnos/EventNumber.hpp +++ b/include/hepnos/EventNumber.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_EVENT_NUMBER_H #define __HEPNOS_EVENT_NUMBER_H diff --git a/include/hepnos/Exception.hpp b/include/hepnos/Exception.hpp index ea0fdec..cfa4a8f 100644 --- a/include/hepnos/Exception.hpp +++ b/include/hepnos/Exception.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_EXCEPTION_H #define __HEPNOS_EXCEPTION_H diff --git a/include/hepnos/KeyValueContainer.hpp b/include/hepnos/KeyValueContainer.hpp index 2aa0c43..c3719c5 100644 --- a/include/hepnos/KeyValueContainer.hpp +++ b/include/hepnos/KeyValueContainer.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_KEYVAL_CONTAINER_H #define __HEPNOS_KEYVAL_CONTAINER_H diff --git a/include/hepnos/Run.hpp b/include/hepnos/Run.hpp index 38f6d02..52d37de 100644 --- a/include/hepnos/Run.hpp +++ b/include/hepnos/Run.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_RUN_H #define __HEPNOS_RUN_H diff --git a/include/hepnos/RunNumber.hpp b/include/hepnos/RunNumber.hpp index 9773c5a..5b60218 100644 --- a/include/hepnos/RunNumber.hpp +++ b/include/hepnos/RunNumber.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_RUN_NUMBER_H #define __HEPNOS_RUN_NUMBER_H diff --git a/include/hepnos/RunSet.hpp b/include/hepnos/RunSet.hpp index 3b5f188..5e1d7f5 100644 --- a/include/hepnos/RunSet.hpp +++ b/include/hepnos/RunSet.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_RUN_SET_H #define __HEPNOS_RUN_SET_H diff --git a/include/hepnos/SubRun.hpp b/include/hepnos/SubRun.hpp index 77ab3fb..8d8138f 100644 --- a/include/hepnos/SubRun.hpp +++ b/include/hepnos/SubRun.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_SUBRUN_H #define __HEPNOS_SUBRUN_H diff --git a/include/hepnos/SubRunNumber.hpp b/include/hepnos/SubRunNumber.hpp index d695784..005a0ba 100644 --- a/include/hepnos/SubRunNumber.hpp +++ b/include/hepnos/SubRunNumber.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_SUB_RUN_NUMBER_H #define __HEPNOS_SUB_RUN_NUMBER_H diff --git a/src/DataSet.cpp b/src/DataSet.cpp index 1b15e07..ed8e0ee 100644 --- a/src/DataSet.cpp +++ b/src/DataSet.cpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #include "hepnos/DataSet.hpp" #include "hepnos/Run.hpp" #include "hepnos/RunSet.hpp" diff --git a/src/DataStore.cpp b/src/DataStore.cpp index af8b32a..b387a12 100644 --- a/src/DataStore.cpp +++ b/src/DataStore.cpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #include #include #include diff --git a/src/Event.cpp b/src/Event.cpp index 2c3b4b1..abc7d3a 100644 --- a/src/Event.cpp +++ b/src/Event.cpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #include "hepnos/Event.hpp" #include "private/EventImpl.hpp" #include "private/DataStoreImpl.hpp" diff --git a/src/Run.cpp b/src/Run.cpp index 0762803..97a7644 100644 --- a/src/Run.cpp +++ b/src/Run.cpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #include "hepnos/Run.hpp" #include "private/RunImpl.hpp" #include "private/SubRunImpl.hpp" diff --git a/src/RunSet.cpp b/src/RunSet.cpp index 79a0dda..8ffa20d 100644 --- a/src/RunSet.cpp +++ b/src/RunSet.cpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #include #include #include diff --git a/src/SubRun.cpp b/src/SubRun.cpp index af2ca03..00ad2dc 100644 --- a/src/SubRun.cpp +++ b/src/SubRun.cpp @@ -1,3 +1,9 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ + #include "hepnos/SubRun.hpp" #include "private/SubRunImpl.hpp" #include "private/EventImpl.hpp" diff --git a/src/private/DataSetImpl.hpp b/src/private/DataSetImpl.hpp index cb7a4d1..fa8ea2c 100644 --- a/src/private/DataSetImpl.hpp +++ b/src/private/DataSetImpl.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_PRIVATE_DATASET_IMPL_H #define __HEPNOS_PRIVATE_DATASET_IMPL_H diff --git a/src/private/DataStoreImpl.hpp b/src/private/DataStoreImpl.hpp index e249c23..48e9384 100644 --- a/src/private/DataStoreImpl.hpp +++ b/src/private/DataStoreImpl.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_PRIVATE_DATASTORE_IMPL #define __HEPNOS_PRIVATE_DATASTORE_IMPL diff --git a/src/private/EventImpl.hpp b/src/private/EventImpl.hpp index b61e292..f0f0382 100644 --- a/src/private/EventImpl.hpp +++ b/src/private/EventImpl.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_PRIVATE_EVENT_IMPL_H #define __HEPNOS_PRIVATE_EVENT_IMPL_H diff --git a/src/private/KeyTypes.hpp b/src/private/KeyTypes.hpp index 6e27b28..594ae23 100644 --- a/src/private/KeyTypes.hpp +++ b/src/private/KeyTypes.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __PRIVATE_KEY_TYPES_H #define __PRIVATE_KEY_TYPES_H diff --git a/src/private/RunImpl.hpp b/src/private/RunImpl.hpp index 7342a4d..f9773f7 100644 --- a/src/private/RunImpl.hpp +++ b/src/private/RunImpl.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_PRIVATE_RUN_IMPL_H #define __HEPNOS_PRIVATE_RUN_IMPL_H diff --git a/src/private/RunSetImpl.hpp b/src/private/RunSetImpl.hpp index 066dd5f..16d1b1e 100644 --- a/src/private/RunSetImpl.hpp +++ b/src/private/RunSetImpl.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_PRIVATE_RUNSET_IMPL_H #define __HEPNOS_PRIVATE_RUNSET_IMPL_H diff --git a/src/private/SubRunImpl.hpp b/src/private/SubRunImpl.hpp index ee4ccbd..82a79b9 100644 --- a/src/private/SubRunImpl.hpp +++ b/src/private/SubRunImpl.hpp @@ -1,3 +1,8 @@ +/* + * (C) 2018 The University of Chicago + * + * See COPYRIGHT in top-level directory. + */ #ifndef __HEPNOS_PRIVATE_SUBRUN_IMPL_H #define __HEPNOS_PRIVATE_SUBRUN_IMPL_H -- 2.26.2