All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Namespaces | Functions
GeometryTestAlg.cxx File Reference

Unit test for geometry functionalities: implementation file. More...

#include "GeometryTestAlg.h"
#include "larcorealg/Geometry/Decomposer.h"
#include "larcorealg/Geometry/Exceptions.h"
#include "larcorealg/Geometry/SimpleGeo.h"
#include "larcorealg/Geometry/GeometryCore.h"
#include "larcorealg/Geometry/CryostatGeo.h"
#include "larcorealg/Geometry/TPCGeo.h"
#include "larcorealg/Geometry/PlaneGeo.h"
#include "larcorealg/Geometry/WireGeo.h"
#include "larcorealg/Geometry/AuxDetGeo.h"
#include "larcorealg/Geometry/AuxDetSensitiveGeo.h"
#include "larcorealg/Geometry/geo.h"
#include "larcorealg/Geometry/geo_vectors_utils.h"
#include "larcorealg/CoreUtils/RealComparisons.h"
#include "larcorealg/CoreUtils/DumpUtils.h"
#include "larcoreobj/SimpleTypesAndConstants/geo_vectors.h"
#include "larcoreobj/SimpleTypesAndConstants/readout_types.h"
#include "larcoreobj/SimpleTypesAndConstants/RawTypes.h"
#include "larcoreobj/SimpleTypesAndConstants/geo_types.h"
#include "larcoreobj/SimpleTypesAndConstants/PhysicalConstants.h"
#include "cetlib/pow.h"
#include "cetlib_except/exception.h"
#include "fhiclcpp/ParameterSet.h"
#include "messagefacility/MessageLogger/MessageLogger.h"
#include "TGeoManager.h"
#include "TStopwatch.h"
#include "TGeoNode.h"
#include "TGeoVolume.h"
#include "TClass.h"
#include "Math/GenVector/DisplacementVector2D.h"
#include "Math/GenVector/DisplacementVector3D.h"
#include "Math/GenVector/PositionVector3D.h"
#include "RtypesCore.h"
#include "TGeoMaterial.h"
#include "TGeoMatrix.h"
#include "TGeoShape.h"
#include "TObjArray.h"
#include "TVector2.h"
#include <stdint.h>
#include <stdlib.h>
#include <memory>
#include <cmath>
#include <vector>
#include <iterator>
#include <algorithm>
#include <set>
#include <array>
#include <string>
#include <sstream>
#include <iostream>
#include <limits>
#include <initializer_list>

Go to the source code of this file.

Namespaces

 geo
 Verifies that the geometry check information is available.
 

Functions

std::ostream & operator<< (std::ostream &out, TVector3 const &v)
 
std::ostream & operator<< (std::ostream &out, TVector2 const &v)
 
 geo::fExpectedPlanePitches (pset.get< std::vector< double >>("ExpectedPlanePitches",{}))
 
 geo::fComputeMass (pset.get("ComputeMass", true))
 

Detailed Description

Unit test for geometry functionalities: implementation file.

Date
2011/02/17
Author
brebe.nosp@m.l@fn.nosp@m.al.go.nosp@m.v
See Also
GeometryTestAlg.h

Definition in file GeometryTestAlg.cxx.

Function Documentation

std::ostream& operator<< ( std::ostream &  out,
TVector3 const &  v 
)

Definition at line 75 of file GeometryTestAlg.cxx.

75  {
76  out << "( " << v.X() << " ; " << v.Y() << " ; " << v.Z() << " )";
77  return out;
78 } // operator<< (TVector3)
std::ostream& operator<< ( std::ostream &  out,
TVector2 const &  v 
)

Definition at line 80 of file GeometryTestAlg.cxx.

80  {
81  out << "( " << v.X() << " ; " << v.Y() << " )";
82  return out;
83 } // operator<< (TVector2)