GeoObjectSorter35.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 /// \file GeoObjectSorter35.h
3 /// \brief Interface to algorithm class for standard sorting of geo::XXXGeo objects
4 ///
5 /// \version $Id: $
6 /// \author brebel@fnal.gov
7 ////////////////////////////////////////////////////////////////////////
8 #ifndef GEO_GEOOBJECTSORTER35_H
9 #define GEO_GEOOBJECTSORTER35_H
10 
11 #include <vector>
12 #include <string>
13 
14 #include "fhiclcpp/fwd.h"
16 
17 namespace geo{
18 
20  public:
21 
23 
24  void SortAuxDets (std::vector<geo::AuxDetGeo> & adgeo) const;
25  void SortAuxDetSensitive(std::vector<geo::AuxDetSensitiveGeo>& adgeo) const;
26  void SortCryostats (std::vector<geo::CryostatGeo> & cgeo) const;
27  void SortTPCs (std::vector<geo::TPCGeo> & tgeo) const;
28  void SortPlanes (std::vector<geo::PlaneGeo> & pgeo,
29  geo::DriftDirection_t driftDir) const;
30  void SortWires (std::vector<geo::WireGeo> & wgeo) const;
31  private:
32 
33  std::string fDetVersion; ///< string of the detector version
34  };
35 
36 }
37 
38 #endif // GEO_GEOOBJECTSORTER35_H
void SortCryostats(std::vector< geo::CryostatGeo > &cgeo) const
std::string string
Definition: nybbler.cc:12
Interface to algorithm class for sorting geo::XXXGeo objects.
void SortWires(std::vector< geo::WireGeo > &wgeo) const
enum geo::driftdir DriftDirection_t
Drift direction: positive or negative.
void SortPlanes(std::vector< geo::PlaneGeo > &pgeo, geo::DriftDirection_t driftDir) const
p
Definition: test.py:223
void SortAuxDets(std::vector< geo::AuxDetGeo > &adgeo) const
std::string fDetVersion
string of the detector version
void SortAuxDetSensitive(std::vector< geo::AuxDetSensitiveGeo > &adgeo) const
void SortTPCs(std::vector< geo::TPCGeo > &tgeo) const
LArSoft geometry interface.
Definition: ChannelGeo.h:16
GeoObjectSorter35(fhicl::ParameterSet const &p)