// // ******************************************************************** // * 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: G4BREPSolidTorusTest.cc,v 1.10 2006/06/29 18:43:21 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 #include #include "G4ios.hh" #include "G4BREPSolid.hh" #include "G4BREPSolidTorus.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); G4double Dist; G4cout << "\n ============ Torus test ================"; G4BREPSolidTorus *MyTorBox = new G4BREPSolidTorus ("MyTorBox" , G4ThreeVector(0,0,0), G4ThreeVector(0,0,1), G4ThreeVector(1,0,0), 0.0 , 100.0 ); G4cout << "\n\nTorus created ! "; G4cout << "\nDir = -1,0,0"; G4cout << "\nStart 19000,1,0"; Dist = MyTorBox->DistanceToIn(tStart, tDir); G4cout << "\nDist to in : " << Dist; MyTorBox->Reset(); Dist = MyTorBox->DistanceToOut(tStart2, tDir); G4cout << "\nStart 0,0,0"; G4cout << "\nDist to out: " << Dist ; Dist = MyTorBox->DistanceToOut(pt); G4cout << "\nPoint 0,0,50"; G4cout << "\nDist to out: " << Dist ; Dist = MyTorBox->DistanceToIn(pt2); G4cout << "\nPoint 100000,0,50"; G4cout << "\nDist to in: " << Dist ; G4cout << G4endl << G4endl; return EXIT_SUCCESS; }