// // ******************************************************************** // * 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: G4BREPSolidBoxTest.cc,v 1.9 2006/06/29 18:43:07 gunter Exp $ // GEANT4 tag $Name: geant4-09-04-ref-00 $ ////////////////////////////////////////////////////////////////////////// // // // BREP solid test, create by L. Broglia, 20/10/98 // modification of old G4Gerep test // #include "G4Timer.hh" #include "globals.hh" #include "G4BREPSolid.hh" #include "G4BREPSolidBox.hh" int main() { G4ThreeVector tStart(19000,0,10.1); G4ThreeVector tDir(-1,0,0); G4ThreeVector tStart2(0,0,10); G4ThreeVector pt(0,0,50); G4ThreeVector pt2(100000,0,50); G4cout << "\n ============ Box test ================"; G4BREPSolidBox *myCalBox = new G4BREPSolidBox ( "MyBox", G4Point3D(-1500, -1500, -1000), G4Point3D(-1500, -1500, 1000), G4Point3D(-1500, 1500, 1000), G4Point3D(-1500, 1500, -1000), G4Point3D( 1500, -1500, -1000), G4Point3D( 1500, -1500, 1000), G4Point3D( 1500, 1500, 1000), G4Point3D( 1500, 1500, -1000) ); G4cout << "\n\nBox created ! "; // -> Check methods : // - Inside // - DistanceToIn // - DistanceToOut G4ThreeVector Pt[4]; Pt[0] = G4ThreeVector( 1, 1, 100); Pt[1] = G4ThreeVector( 1000, 1000, 5000); Pt[2] = G4ThreeVector(-1000,-1000,-5000); Pt[3] = G4ThreeVector( 0, 0, -100); G4ThreeVector Dir[4]; Dir[0] = G4ThreeVector( 1, 0, 0); Dir[1] = G4ThreeVector( 0, 1, 0); Dir[2] = G4ThreeVector( 0, 0, 1); Dir[3] = G4ThreeVector( 1, 1, -1); EInside in[4]; G4double dist[4][3]; G4cout<<"\n\n"; for (G4int a = 0; a<4; a++) { in[a] = myCalBox->Inside(Pt[a]); G4cout<<"----------------------------\n\n"; G4cout<<"x="<DistanceToOut(Pt[a]); G4cout<<"\nDistance to out is :"<DistanceToIn(Pt[a]); G4cout<<"\nDistance to in is :"<