130 lines
4.8 KiB
C++
130 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// --------------------------------------------------------------
|
|
// GEANT 4 - ULTRA experiment example
|
|
// --------------------------------------------------------------
|
|
//
|
|
// Code developed by:
|
|
// B. Tome, M.C. Espirito-Santo, A. Trindade, P. Rodrigues
|
|
//
|
|
// ****************************************************
|
|
// * UltraFresnelLensParameterisation.cc
|
|
// ****************************************************
|
|
//
|
|
// Class derived from G4VPVParameterisation and used to define a Fresnel lens geometry
|
|
// through a parameterised replication of G4Cons volumes. These volumes are frustra
|
|
// of cones describing the lens grooves.
|
|
// An UltraFresnelLensParameterisation object is created in the UltraFresnelLens class
|
|
//
|
|
#include <cmath>
|
|
|
|
#include "UltraFresnelLensParameterisation.hh"
|
|
#include "UltraFresnelLens.hh"
|
|
|
|
#include "G4SystemOfUnits.hh"
|
|
#include "G4VPhysicalVolume.hh"
|
|
#include "G4ThreeVector.hh"
|
|
#include "G4Cons.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
UltraFresnelLensParameterisation::UltraFresnelLensParameterisation(UltraFresnelLens* Lens)
|
|
{
|
|
|
|
FresnelLens = Lens ;
|
|
GrooveWidth = Lens->GetGrooveWidth() ;
|
|
NumberOfGrooves = Lens->GetNumberOfGrooves() ;
|
|
|
|
dZOffset = Lens->GetSagita((NumberOfGrooves-0)*(GrooveWidth)) -
|
|
Lens->GetSagita((NumberOfGrooves-1)*(GrooveWidth)) ;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
UltraFresnelLensParameterisation::~UltraFresnelLensParameterisation()
|
|
{;}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
void UltraFresnelLensParameterisation::ComputeTransformation
|
|
(const G4int GrooveNo, G4VPhysicalVolume* physVol) const
|
|
{
|
|
|
|
auto Rmin1 = (GrooveNo+0)*(GrooveWidth) ;
|
|
auto Rmax1 = (GrooveNo+1)*(GrooveWidth) ;
|
|
|
|
auto dZ = FresnelLens->GetSagita(Rmax1) - FresnelLens->GetSagita(Rmin1) ;
|
|
|
|
if (dZ <= 0.0){
|
|
G4Exception("UltraFresnelLensParameterisation::ComputeTransformation()",
|
|
"AirSh003",FatalException,
|
|
"UltraFresnelLensParameterisation::ComputeTransformation: Groove depth<0 !");
|
|
}
|
|
|
|
G4ThreeVector origin(0,0,(dZ-dZOffset)/2.);
|
|
physVol->SetTranslation(origin);
|
|
physVol->SetRotation(0);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
void UltraFresnelLensParameterisation::ComputeDimensions
|
|
(G4Cons& Groove, const G4int GrooveNo, const G4VPhysicalVolume*) const
|
|
{
|
|
auto Rmin1 = (GrooveNo+0)*(GrooveWidth) ;
|
|
auto Rmax1 = (GrooveNo+1)*(GrooveWidth) ;
|
|
|
|
auto Rmin2 = Rmin1 ;
|
|
auto Rmax2 = Rmin2+0.0001*mm ;
|
|
|
|
auto dZ = FresnelLens->GetSagita(Rmax1) - FresnelLens->GetSagita(Rmin1) ;
|
|
|
|
if (dZ <= 0.0){
|
|
G4Exception("UltraFresnelLensParameterisation::ComputeDimensions()",
|
|
"AirSh004",FatalException,
|
|
"UltraFresnelLensParameterisation::ComputeDimensions: Groove depth<0 !");
|
|
}
|
|
|
|
|
|
Groove.SetInnerRadiusMinusZ(Rmin1) ;
|
|
Groove.SetOuterRadiusMinusZ(Rmax1) ;
|
|
|
|
Groove.SetInnerRadiusPlusZ(Rmin2) ;
|
|
Groove.SetOuterRadiusPlusZ(Rmax2) ;
|
|
|
|
Groove.SetZHalfLength(dZ/2.) ;
|
|
|
|
#ifdef ULTRA_VERBOSE
|
|
|
|
G4cout << "UltraFresnelLensParameterisation: GrooveNo " << GrooveNo+1 <<
|
|
" Rmin1, Rmax1(mm): " << Rmin1/mm <<" "<< Rmax1/mm << " dZ(mm) " << dZ/mm << G4endl ;
|
|
#endif
|
|
|
|
|
|
|
|
}
|