From b4a75734f5c93d6f1408bc0fc2c57aab66c4dc38 Mon Sep 17 00:00:00 2001 From: Gordon McCann <43148247+gwm17@users.noreply.github.com> Date: Wed, 22 Jun 2022 15:47:34 -0400 Subject: [PATCH] Remove uneeded include --- include/.gitignore | 5 ----- include/DataStructs.h | 27 --------------------------- 2 files changed, 32 deletions(-) delete mode 100644 include/.gitignore delete mode 100644 include/DataStructs.h diff --git a/include/.gitignore b/include/.gitignore deleted file mode 100644 index 57f1fb1..0000000 --- a/include/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -###ignore pch### -*.gch - -###include this### -!.gitignore diff --git a/include/DataStructs.h b/include/DataStructs.h deleted file mode 100644 index 5016a4c..0000000 --- a/include/DataStructs.h +++ /dev/null @@ -1,27 +0,0 @@ -/*DataStructs.h - *Data structures for analysis. To be implemented as a dictionary for ROOT in LinkDef - *Based on: FocalPlane_SABRE.h - *Gordon M. Oct. 2019 - */ -#ifndef DATA_STRUCTS_H -#define DATA_STRUCTS_H - -#include -#include - -struct DPPChannel -{ - double Timestamp; - int Channel, Board, Energy, EnergyShort; - int Flags; - std::vector Samples; -}; - -/* - ROOT does a bad job of ensuring that header-only type dictionaries (the only type they explicity accept) - are linked when compiled as shared libraries (the recommended method). As a work around, a dummy function that - ensures the library is linked (better than no-as-needed which I dont think is in general supported across platforms) -*/ -bool EnforceDictonaryLinked(); - -#endif