70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
/*//////////////////////////////////////////////////////////////////////////////
|
|
// CMT Cosmic Muon Tomography project //////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
Copyright (c) 2014, Universita' degli Studi di Padova, INFN sez. di Padova
|
|
All rights reserved
|
|
|
|
Authors: Andrea Rigoni Garola < andrea.rigoni@pd.infn.it >
|
|
|
|
------------------------------------------------------------------
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 3.0 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library.
|
|
|
|
//////////////////////////////////////////////////////////////////////////////*/
|
|
|
|
#ifndef VTK_DETECTOR_CHAMBER_H
|
|
#define VTK_DETECTOR_CHAMBER_H
|
|
|
|
#include <vtkActor.h>
|
|
#include <vtkCommand.h>
|
|
#include <vtkSmartPointer.h>
|
|
#include <vtkTransform.h>
|
|
|
|
#include "HEP/Detectors/DetectorChamber.h"
|
|
#include "Vtk/Math/vtkDense.h"
|
|
#include "Vtk/uLibVtkInterface.h"
|
|
#include "Vtk/Math/vtkContainerBox.h"
|
|
#include <vtkActor.h>
|
|
#include <vtkBoxWidget.h>
|
|
#include <vtkTransformPolyDataFilter.h>
|
|
|
|
class vtkPlaneSource;
|
|
|
|
namespace uLib {
|
|
namespace Vtk {
|
|
|
|
// class HandlerWidget; // Removed as we use vtkBoxWidget now
|
|
|
|
class DetectorChamber : public ContainerBox {
|
|
typedef uLib::DetectorChamber Content;
|
|
typedef ContainerBox BaseClass;
|
|
|
|
public:
|
|
DetectorChamber(uLib::DetectorChamber *content);
|
|
virtual ~DetectorChamber();
|
|
|
|
Content *GetContent() const override;
|
|
|
|
virtual void Update() override;
|
|
|
|
protected:
|
|
vtkActor *m_PlaneActor;
|
|
vtkPlaneSource *m_PlaneSource;
|
|
};
|
|
|
|
} // namespace Vtk
|
|
} // namespace uLib
|
|
|
|
#endif // VTK_DETECTOR_CHAMBER_H
|