1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#ifndef VECGEOM_VOLUMES_PLACEDTBOOLEAN_H_
#define VECGEOM_VOLUMES_PLACEDTBOOLEAN_H_
#include "VecGeom/base/Global.h"
#include "VecGeom/volumes/PlacedVolume.h"
#include "VecGeom/volumes/UnplacedVolume.h"
#include "VecGeom/volumes/kernel/BooleanImplementation.h"
#include "VecGeom/volumes/PlacedVolImplHelper.h"
#include "VecGeom/volumes/UnplacedBooleanVolume.h"
#ifdef VECGEOM_ROOT
class TGeoShape;
#endif
#ifdef VECGEOM_GEANT4
class G4VSolid;
#endif
namespace vecgeom {
VECGEOM_DEVICE_FORWARD_DECLARE(template <BooleanOperation Op> class PlacedBooleanVolume;);
VECGEOM_DEVICE_DECLARE_CONV_TEMPLATE_1v(class, PlacedBooleanVolume, BooleanOperation, Arg1);
inline namespace VECGEOM_IMPL_NAMESPACE {
template <BooleanOperation Op>
class PlacedBooleanVolume : public PlacedVolumeImplHelper<UnplacedBooleanVolume<Op>, VPlacedVolume> {
using Base = PlacedVolumeImplHelper<UnplacedBooleanVolume<Op>, VPlacedVolume>;
using UnplacedVol_t = UnplacedBooleanVolume<Op>;
public:
using Base::GetLogicalVolume;
#ifndef VECCORE_CUDA
using Base::Base;
using Base::Inside;
PlacedBooleanVolume(char const *const label, LogicalVolume const *const logicalVolume,
Transformation3D const *const transformation)
: Base(label, logicalVolume, transformation)
{
}
PlacedBooleanVolume(LogicalVolume const *const logicalVolume, Transformation3D const *const transformation)
: PlacedBooleanVolume("", logicalVolume, transformation)
{
}
#else
VECCORE_ATT_DEVICE PlacedBooleanVolume(LogicalVolume const *const logicalVolume,
Transformation3D const *const transformation, const int id, const int copy_no,
const int child_id)
: Base(logicalVolume, transformation, id, copy_no, child_id)
{
}
#endif
VECCORE_ATT_HOST_DEVICE
virtual ~PlacedBooleanVolume() {}
VECCORE_ATT_HOST_DEVICE
UnplacedVol_t const *GetUnplacedVolume() const
{
return static_cast<UnplacedVol_t const *>(GetLogicalVolume()->GetUnplacedVolume());
}
VECCORE_ATT_HOST_DEVICE
virtual void PrintType() const override;
virtual void PrintType(std::ostream &) const override;
// CUDA specific
virtual int MemorySize() const override { return sizeof(*this); }
// Comparison specific
#ifndef VECCORE_CUDA
virtual VPlacedVolume const *ConvertToUnspecialized() const override { return this; }
#ifdef VECGEOM_ROOT
virtual TGeoShape const *ConvertToRoot() const override;
#endif
#ifdef VECGEOM_GEANT4
virtual G4VSolid const *ConvertToGeant4() const override;
#endif
#endif // VECGEOM_TEST_BENCHMARK
}; // end class declaration
} // namespace VECGEOM_IMPL_NAMESPACE
} // namespace vecgeom
#endif // VECGEOM_VOLUMES_PLACEDTBOOLEAN_H_
|