Skip to content

Commit

Permalink
Revise some includes
Browse files Browse the repository at this point in the history
  • Loading branch information
VourMa committed Aug 19, 2024
1 parent ff27cf3 commit 9544a58
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 14 deletions.
4 changes: 0 additions & 4 deletions RecoTracker/LSTCore/interface/EndcapGeometry.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@
#define RecoTracker_LSTCore_interface_EndcapGeometry_h

#include <map>
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <stdexcept>

namespace lst {
class EndcapGeometry {
Expand Down
8 changes: 3 additions & 5 deletions RecoTracker/LSTCore/interface/ModuleConnectionMap.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
#ifndef RecoTracker_LSTCore_interface_ModuleConnectionMap_h
#define RecoTracker_LSTCore_interface_ModuleConnectionMap_h

#include <iostream>
#include <fstream>
#include <vector>
#include <array>
#include <map>
#include <sstream>
#include <algorithm>
#include <string>
#include <vector>

namespace lst {
class ModuleConnectionMap {
Expand Down
6 changes: 1 addition & 5 deletions RecoTracker/LSTCore/interface/TiltedGeometry.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
#ifndef RecoTracker_LSTCore_interface_TiltedGeometry_h
#define RecoTracker_LSTCore_interface_TiltedGeometry_h

#include <vector>
#include <map>
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <stdexcept>
#include <vector>

namespace lst {
class TiltedGeometry {
Expand Down
5 changes: 5 additions & 0 deletions RecoTracker/LSTCore/src/EndcapGeometry.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#include "RecoTracker/LSTCore/interface/EndcapGeometry.h"

#include <fstream>
#include <iostream>
#include <sstream>
#include <stdexcept>

lst::EndcapGeometry::EndcapGeometry(std::string const& filename) { load(filename); }

void lst::EndcapGeometry::load(std::string const& filename) {
Expand Down
5 changes: 5 additions & 0 deletions RecoTracker/LSTCore/src/ModuleConnectionMap.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#include "RecoTracker/LSTCore/interface/ModuleConnectionMap.h"

#include <fstream>
#include <iostream>
#include <sstream>
#include <algorithm>

lst::ModuleConnectionMap::ModuleConnectionMap() {}

lst::ModuleConnectionMap::ModuleConnectionMap(std::string const& filename) { load(filename); }
Expand Down
5 changes: 5 additions & 0 deletions RecoTracker/LSTCore/src/TiltedGeometry.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#include "RecoTracker/LSTCore/interface/TiltedGeometry.h"

#include <fstream>
#include <iostream>
#include <sstream>
#include <stdexcept>

lst::TiltedGeometry::TiltedGeometry(std::string const& filename) { load(filename); }

void lst::TiltedGeometry::load(std::string const& filename) {
Expand Down

0 comments on commit 9544a58

Please sign in to comment.