159 lines
4.8 KiB
C++
159 lines
4.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: SoBox.h,v 1.3 2006/06/29 21:21:18 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-08-01 $
|
|
//
|
|
/*-----------------------------Hepvis----------------------------------------*/
|
|
/* */
|
|
/* Node: SoBox */
|
|
/* Description: Represents the G4Box Geant Geometry entity */
|
|
/* Author: Joe Boudreau Nov 11 1996 */
|
|
/* */
|
|
/*---------------------------------------------------------------------------*/
|
|
#ifndef HEPVis_SoBox_h
|
|
#define HEPVis_SoBox_h
|
|
|
|
#include <Inventor/fields/SoSFFloat.h>
|
|
#include <Inventor/fields/SoSFNode.h>
|
|
#include <Inventor/nodes/SoShape.h>
|
|
|
|
class SoSFNode;
|
|
|
|
//! SoBox - Inventor version of the G4Box Geant Geometry entity
|
|
/*!
|
|
* Node: SoBox
|
|
*
|
|
* Description: The Inventor version of the G4Box Geant Geometry entity
|
|
*
|
|
* Author: Joe Boudreau Nov 11 1996
|
|
*
|
|
* class G4Box
|
|
*
|
|
* A Box is a cuboid of given half lengths dx,dy,dz. The Box is
|
|
* centred on the origin with sides parallel to the x/y/z axes.
|
|
*
|
|
* Always use Inventor Fields. This allows Inventor to detect a change to
|
|
* the data field and take the appropriate action; e.g., redraw the scene.
|
|
*/
|
|
|
|
#define SoBox Geant4_SoBox
|
|
|
|
class SoBox:public SoShape {
|
|
|
|
// The following is required:
|
|
SO_NODE_HEADER(SoBox);
|
|
|
|
public:
|
|
|
|
//
|
|
//! Half-length along X
|
|
//
|
|
SoSFFloat fDx;
|
|
//
|
|
//! Half-length along Y
|
|
//
|
|
SoSFFloat fDy;
|
|
//
|
|
//! Half-length along Z
|
|
//
|
|
SoSFFloat fDz;
|
|
//
|
|
//! Alternate rep - for use by users without HEPVis shared objects
|
|
//
|
|
SoSFNode alternateRep;
|
|
|
|
//
|
|
//! Constructor, required
|
|
//
|
|
SoBox();
|
|
|
|
//
|
|
//! Class Initializer, required
|
|
//
|
|
static void initClass();
|
|
|
|
//
|
|
//! Generate AlternateRep, required. Generating an alternate representation
|
|
//! must be done upon users request. It allows an Inventor program to read
|
|
//! back the file without requiring *this* code to be dynamically linked.
|
|
//! If the users expects that *this* code will be dynamically linked, he
|
|
//! need not invoke this method.
|
|
//
|
|
virtual void generateAlternateRep();
|
|
|
|
//
|
|
//! We better be able to clear it, too!
|
|
//
|
|
virtual void clearAlternateRep();
|
|
|
|
protected:
|
|
|
|
//
|
|
//! compute bounding Box, required
|
|
//
|
|
virtual void computeBBox(SoAction *action, SbBox3f &box, SbVec3f ¢er );
|
|
|
|
//
|
|
//! Generate Primitives, required
|
|
//
|
|
virtual void generatePrimitives(SoAction *action);
|
|
|
|
//
|
|
//! GetChildList, required whenever the class has hidden children
|
|
//
|
|
virtual SoChildList *getChildren() const;
|
|
|
|
|
|
protected:
|
|
//
|
|
//! Destructor, required
|
|
//
|
|
virtual ~SoBox();
|
|
|
|
private:
|
|
|
|
//
|
|
//! Generate Children. Used to create the hidden children. Required whenever
|
|
//! the node has hidden children.
|
|
//
|
|
void generateChildren();
|
|
|
|
//
|
|
//! Used to modify hidden children when a data field is changed. Required
|
|
//! whenever the class has hidden children.
|
|
//
|
|
void updateChildren();
|
|
|
|
//
|
|
//! ChildList. Required whenever the class has hidden children.
|
|
//
|
|
SoChildList *children;
|
|
|
|
};
|
|
|
|
#endif
|