Skip to content
Snippets Groups Projects
Commit c46a4680 authored by Dave Casper's avatar Dave Casper
Browse files

Merge branch 'master_McDump' into 'master'

Correct Athena compatibility problems

See merge request faser/calypso!56
parents e40d8000 0cde3351
No related branches found
No related tags found
No related merge requests found
Showing
with 28 additions and 100 deletions
...@@ -39,7 +39,7 @@ StatusCode RDOReadAlg::execute() ...@@ -39,7 +39,7 @@ StatusCode RDOReadAlg::execute()
SG::ReadHandle<McEventCollection> h_mcEvents(m_mcEventKey); SG::ReadHandle<McEventCollection> h_mcEvents(m_mcEventKey);
ATH_MSG_INFO("Read McEventContainer with " << h_mcEvents->size() << " events"); ATH_MSG_INFO("Read McEventContainer with " << h_mcEvents->size() << " events");
if (h_mcEvents->size() == 0) return StatusCode::FAILURE; if (h_mcEvents->size() == 0) return StatusCode::FAILURE;
// h_mcEvents->at(0)->print( msg().stream() );
SG::ReadHandle<FaserSiHitCollection> h_siHits(m_faserSiHitKey); SG::ReadHandle<FaserSiHitCollection> h_siHits(m_faserSiHitKey);
ATH_MSG_INFO("Read FaserSiHitCollection with " << h_siHits->size() << " hits"); ATH_MSG_INFO("Read FaserSiHitCollection with " << h_siHits->size() << " hits");
......
...@@ -28,7 +28,7 @@ class RDOReadAlg : public AthHistogramAlgorithm ...@@ -28,7 +28,7 @@ class RDOReadAlg : public AthHistogramAlgorithm
// Read handle keys for data containers // Read handle keys for data containers
// Any other event data can be accessed identically // Any other event data can be accessed identically
// Note the key names ("GEN_EVENT" or "SCT_Hits") are Gaudi properties and can be configured at run-time // Note the key names ("GEN_EVENT" or "SCT_Hits") are Gaudi properties and can be configured at run-time
SG::ReadHandleKey<McEventCollection> m_mcEventKey { this, "McEventCollection", "GEN_EVENT" }; SG::ReadHandleKey<McEventCollection> m_mcEventKey { this, "McEventCollection", "TruthEvent" };
SG::ReadHandleKey<FaserSiHitCollection> m_faserSiHitKey { this, "FaserSiHitCollection", "SCT_Hits" }; SG::ReadHandleKey<FaserSiHitCollection> m_faserSiHitKey { this, "FaserSiHitCollection", "SCT_Hits" };
SG::ReadHandleKey<FaserSCT_RDO_Container> m_faserRdoKey { this, "FaserSCT_RDO_Container", "SCT_RDOs"}; SG::ReadHandleKey<FaserSCT_RDO_Container> m_faserRdoKey { this, "FaserSCT_RDO_Container", "SCT_RDOs"};
SG::ReadHandleKey<TrackerSimDataCollection> m_sctMap {this, "TrackerSimDataCollection", "SCT_SDO_Map"}; SG::ReadHandleKey<TrackerSimDataCollection> m_sctMap {this, "TrackerSimDataCollection", "SCT_SDO_Map"};
......
...@@ -35,7 +35,8 @@ set( CMAKE_AUTORCC TRUE ) ...@@ -35,7 +35,8 @@ set( CMAKE_AUTORCC TRUE )
atlas_add_executable( FaserGeoEditor FaserGeoEditor/*.h src/*.cxx src/*.h atlas_add_executable( FaserGeoEditor FaserGeoEditor/*.h src/*.cxx src/*.h
PRIVATE_INCLUDE_DIRS ${QT5_INCLUDE_DIRS} ${CMAKE_CURRENT_BINARY_DIR} # PRIVATE_INCLUDE_DIRS ${QT5_INCLUDE_DIRS} ${CMAKE_CURRENT_BINARY_DIR}
PRIVATE_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}
LINK_LIBRARIES Qt5::Core Qt5::Sql Qt5::OpenGL Qt5::Gui Qt5::Widgets Qt5::PrintSupport) LINK_LIBRARIES Qt5::Core Qt5::Sql Qt5::OpenGL Qt5::Gui Qt5::Widgets Qt5::PrintSupport)
# Install files from the package: # Install files from the package:
......
...@@ -103,7 +103,7 @@ StatusCode GeoModelSvc::initialize() ...@@ -103,7 +103,7 @@ StatusCode GeoModelSvc::initialize()
Service* convSvc=dynamic_cast<Service*>(conversionSvc.get()); Service* convSvc=dynamic_cast<Service*>(conversionSvc.get());
if (convSvc->FSMState() < Gaudi::StateMachine::INITIALIZED) { if (convSvc->FSMState() < Gaudi::StateMachine::INITIALIZED) {
ATH_MSG_INFO("Explicitly initializing DetDescrCnvSvc"); ATH_MSG_INFO("Explicitly initializing DetDescrCnvSvc");
convSvc->sysInitialize(); ATH_CHECK( convSvc->sysInitialize() );
} }
ATH_CHECK( m_detectorTools.retrieve() ); ATH_CHECK( m_detectorTools.retrieve() );
...@@ -272,7 +272,8 @@ StatusCode GeoModelSvc::geoInit() ...@@ -272,7 +272,8 @@ StatusCode GeoModelSvc::geoInit()
} }
if(!m_ignoreTagSupport) { if(!m_ignoreTagSupport) {
RDBTagDetails faserTagDetails = rdbAccess->getTagDetails(m_FaserVersion, "FASERDD"); RDBTagDetails faserTagDetails;
rdbAccess->getTagDetails(faserTagDetails, m_FaserVersion, "FASERDD");
const coral::AttributeSpecification& supportedSpec = faserTagDetails["SUPPORTED"].specification(); const coral::AttributeSpecification& supportedSpec = faserTagDetails["SUPPORTED"].specification();
if(supportedSpec.type()==typeid(bool)) { if(supportedSpec.type()==typeid(bool)) {
if(!faserTagDetails["SUPPORTED"].data<bool>()) { if(!faserTagDetails["SUPPORTED"].data<bool>()) {
......
...@@ -9,11 +9,12 @@ from AthenaCommon.AppMgr import * ...@@ -9,11 +9,12 @@ from AthenaCommon.AppMgr import *
from G4FaserServices.G4FaserServicesConfigNew import DetectorGeometrySvcCfg from G4FaserServices.G4FaserServicesConfigNew import DetectorGeometrySvcCfg
from G4FaserTools.G4FaserToolsConfigNew import SensitiveDetectorMasterToolCfg from G4FaserTools.G4FaserToolsConfigNew import SensitiveDetectorMasterToolCfg
from G4FaserServices.G4FaserUserActionConfigNew import UserActionSvcCfg from G4FaserServices.G4FaserUserActionConfigNew import UserActionSvcCfg
from G4AtlasServices.G4AtlasServicesConfigNew import PhysicsListSvcCfg
# from G4AtlasApps.G4Atlas_MetadataNew import writeSimulationParametersMetadata # from G4AtlasApps.G4Atlas_MetadataNew import writeSimulationParametersMetadata
# #
# Framework utilities # Framework utilities
# #
from FaserISF_Services.FaserISF_ServicesConfigNew import FaserTruthServiceCfg, FaserGeoIDSvcCfg, FaserInputConverterCfg from FaserISF_Services.FaserISF_ServicesConfigNew import FaserTruthServiceCfg, FaserInputConverterCfg, FaserGeoIDSvcCfg
# #
from G4FaserAlg.G4FaserAlgConf import G4FaserAlg from G4FaserAlg.G4FaserAlgConf import G4FaserAlg
...@@ -72,6 +73,12 @@ def G4FaserAlgCfg(ConfigFlags, name='G4FaserAlg', **kwargs): ...@@ -72,6 +73,12 @@ def G4FaserAlgCfg(ConfigFlags, name='G4FaserAlg', **kwargs):
kwargs.setdefault('TruthRecordService', result.getService("FaserISF_TruthService")) kwargs.setdefault('TruthRecordService', result.getService("FaserISF_TruthService"))
#kwargs.setdefault('TruthRecordService', ConfigFlags.Sim.TruthStrategy) # TODO need to have manual override (simFlags.TruthStrategy.TruthServiceName()) #kwargs.setdefault('TruthRecordService', ConfigFlags.Sim.TruthStrategy) # TODO need to have manual override (simFlags.TruthStrategy.TruthServiceName())
# #
# Locates detector region for space points (no longer used by G4FaserAlg)
#
accGeoID = FaserGeoIDSvcCfg(ConfigFlags)
result.merge(accGeoID)
#kwargs.setdefault('GeoIDSvc', result.getService('ISF_FaserGeoIDSvc'))
#
# Converts generator particles to a proprietary type managed by ISF # Converts generator particles to a proprietary type managed by ISF
# #
accInputConverter = FaserInputConverterCfg(ConfigFlags) accInputConverter = FaserInputConverterCfg(ConfigFlags)
...@@ -92,6 +99,11 @@ def G4FaserAlgCfg(ConfigFlags, name='G4FaserAlg', **kwargs): ...@@ -92,6 +99,11 @@ def G4FaserAlgCfg(ConfigFlags, name='G4FaserAlg', **kwargs):
# #
result.merge( UserActionSvcCfg(ConfigFlags) ) result.merge( UserActionSvcCfg(ConfigFlags) )
kwargs.setdefault('UserActionSvc', result.getService( "G4UA::UserActionSvc") ) kwargs.setdefault('UserActionSvc', result.getService( "G4UA::UserActionSvc") )
#PhysicsListSvc
result.merge( PhysicsListSvcCfg(ConfigFlags) )
kwargs.setdefault('PhysicsListSvc', result.getService( "PhysicsListSvc") )
# #
# Output level # Output level
# #
......
...@@ -25,6 +25,7 @@ ISF__FaserTruthSvc, ISF__FaserGeoIDSvc, ISF__FaserInputConverter = CompFactory.g ...@@ -25,6 +25,7 @@ ISF__FaserTruthSvc, ISF__FaserGeoIDSvc, ISF__FaserInputConverter = CompFactory.g
#getMC12CaloTruthStrategies, getMC12MSTruthStrategies, getMC12TruthService, getTruthService, getMC12LLPTruthService, getMC12PlusTruthService, getMC15IDTruthStrategies #getMC12CaloTruthStrategies, getMC12MSTruthStrategies, getMC12TruthService, getTruthService, getMC12LLPTruthService, getMC12PlusTruthService, getMC15IDTruthStrategies
#getMC15CaloTruthStrategies #getMC15CaloTruthStrategies
def FaserGeoIDSvcCfg(ConfigFlags, name="ISF_FaserGeoIDSvc", **kwargs): def FaserGeoIDSvcCfg(ConfigFlags, name="ISF_FaserGeoIDSvc", **kwargs):
result = ComponentAccumulator() result = ComponentAccumulator()
...@@ -32,6 +33,7 @@ def FaserGeoIDSvcCfg(ConfigFlags, name="ISF_FaserGeoIDSvc", **kwargs): ...@@ -32,6 +33,7 @@ def FaserGeoIDSvcCfg(ConfigFlags, name="ISF_FaserGeoIDSvc", **kwargs):
return result return result
def GenParticleFiltersToolCfg(ConfigFlags): def GenParticleFiltersToolCfg(ConfigFlags):
result = ComponentAccumulator() result = ComponentAccumulator()
......
...@@ -34,8 +34,13 @@ from AthenaCommon.SystemOfUnits import MeV, mm ...@@ -34,8 +34,13 @@ from AthenaCommon.SystemOfUnits import MeV, mm
def FaserParticlePositionFilterCfg(ConfigFlags, name="ISF_FaserParticlePositionFilter", **kwargs): def FaserParticlePositionFilterCfg(ConfigFlags, name="ISF_FaserParticlePositionFilter", **kwargs):
result = ComponentAccumulator() result = ComponentAccumulator()
# accGeoID = FaserGeoIDSvcCfg(ConfigFlags)
# result.merge(accGeoID)
# ParticlePositionFilter # ParticlePositionFilter
kwargs.setdefault('GeoIDService' , 'ISF_FaserGeoIDSvc' ) kwargs.setdefault('GeoIDService' , 'ISF_FaserGeoIDSvc' )
# kwargs.setdefault('GeoIDService' , result.getService('ISF_FaserGeoIDSvc') )
result.setPrivateTools(ISF__FaserGenParticlePositionFilter(name, **kwargs)) result.setPrivateTools(ISF__FaserGenParticlePositionFilter(name, **kwargs))
return result return result
......
...@@ -260,7 +260,7 @@ StatusCode TrackerAlignDBTool::createDB() const ...@@ -260,7 +260,7 @@ StatusCode TrackerAlignDBTool::createDB() const
} }
// sort the created objects (in case, usually come out sorted from GeoModel) // sort the created objects (in case, usually come out sorted from GeoModel)
sortTrans(); ATH_CHECK(sortTrans());
// list out size of all created objects // list out size of all created objects
ATH_MSG_DEBUG( "Dumping size of created AlignableTransform objects"); ATH_MSG_DEBUG( "Dumping size of created AlignableTransform objects");
for (unsigned int i = 0; i < m_alignobjs.size(); ++i) for (unsigned int i = 0; i < m_alignobjs.size(); ++i)
......
...@@ -40,10 +40,6 @@ public: ...@@ -40,10 +40,6 @@ public:
virtual void handleTubs(const GeoTubs *tubs); virtual void handleTubs(const GeoTubs *tubs);
#ifndef BUILDVP1LIGHT
virtual void handleLArCustom(const LArCustomShape *);
#endif
virtual void handleSimplePolygonBrep(const GeoSimplePolygonBrep *); virtual void handleSimplePolygonBrep(const GeoSimplePolygonBrep *);
virtual void handleTessellatedSolid (const GeoTessellatedSolid *); virtual void handleTessellatedSolid (const GeoTessellatedSolid *);
......
...@@ -168,95 +168,6 @@ void SoVisualizeAction::handleTubs(const GeoTubs *tubs) ...@@ -168,95 +168,6 @@ void SoVisualizeAction::handleTubs(const GeoTubs *tubs)
m_shape=sotubs; m_shape=sotubs;
} }
#ifndef BUILDVP1LIGHT
void SoVisualizeAction::handleLArCustom(const LArCustomShape *custom)
{
//qDebug() << "SoVisualizeAction::handleLArCustom";
static const double eta_hi = 3.2;
static const double eta_mid = 2.5;
static const double eta_low = 1.375;
// static const double zWheelRefPoint = 3689.5*SYSTEM_OF_UNITS::mm; //=endg_z0
static const double dMechFocaltoWRP = 3691. *SYSTEM_OF_UNITS::mm; //=endg_z1
// static const double dElecFocaltoWRP = 3689. *SYSTEM_OF_UNITS::mm; //=endg_dcf
static const double dWRPtoFrontFace = 11. *SYSTEM_OF_UNITS::mm;
static const double rOuterCutoff = 2034. *SYSTEM_OF_UNITS::mm; //=endg_rlimit
SoLAr::initClass();
SoLAr *solar = new SoLAr();
const LArWheelCalculator *calc = custom->calculator();
LArG4::LArWheelCalculator_t type = calc->type();
if (type==LArG4::InnerAbsorberWheel ||
type==LArG4::InnerElectrodWheel ||
type==LArG4::InnerAbsorberModule ||
type==LArG4::InnerElectrodModule ) {
float zPlane[2],rInner[2],rOuter[2];
zPlane[0]=0;
zPlane[1]=calc->GetWheelThickness();
double tanThetaInner = 2. * exp(-eta_hi ) / (1. - exp(2.*-eta_hi ));
double tanThetaMid = 2. * exp(-eta_mid) / (1. - exp(2.*-eta_mid));
double zWheelFrontFace = dMechFocaltoWRP + dWRPtoFrontFace;
double zWheelBackFace = zWheelFrontFace + calc->GetWheelThickness();
rInner[0] = zWheelFrontFace * tanThetaInner;
rInner[1] = zWheelBackFace * tanThetaInner;
// Note that there is a 3mm gap between the outer surface of the
// inner wheel and the inner surface of the outer wheel.
double HalfGapBetweenWheels = 0.15*SYSTEM_OF_UNITS::cm; // In DB EMECGEOMETRY.DCRACK
rOuter[0] = zWheelFrontFace * tanThetaMid - HalfGapBetweenWheels;
rOuter[1] = zWheelBackFace * tanThetaMid - HalfGapBetweenWheels;
solar->fRmin.setValues(0,2,rInner);
solar->fRmax.setValues(0,2,rOuter);
solar->fDz.setValues (0,2,zPlane);
}
else if (type==LArG4::OuterAbsorberWheel ||
type==LArG4::OuterElectrodWheel ||
type==LArG4::OuterAbsorberModule ||
type==LArG4::OuterElectrodModule ) {
float zPlane[3], rInner[3], rOuter[3];
zPlane[0] = 0;
zPlane[2] = calc->GetWheelThickness();
double tanThetaMid = 2. * exp(-eta_mid) / (1. - exp(2.*-eta_mid));
double tanThetaOuter = 2. * exp(-eta_low) / (1. - exp(2.*-eta_low));
double zWheelFrontFace = dMechFocaltoWRP + dWRPtoFrontFace;
double zWheelBackFace = zWheelFrontFace + calc->GetWheelThickness();
// Note that there is a 3mm gap between the outer surface of the
// inner wheel and the inner surface of the outer wheel.
double HalfGapBetweenWheels = 0.15*SYSTEM_OF_UNITS::cm; // In DB! (EMECGEOMETRY.DCRACK);
rInner[0] = zWheelFrontFace * tanThetaMid + HalfGapBetweenWheels;
rInner[2] = zWheelBackFace * tanThetaMid + HalfGapBetweenWheels;
rOuter[0] = zWheelFrontFace * tanThetaOuter;
rOuter[2] = zWheelBackFace * tanThetaOuter;
// If we simply left it at that, the outer wheel would protrude
// beyond the edge of the cryostat. We have to "slice off" the lip
// of the outer wheel to create a shape that's roughtly like a
// bathtub plug.
// Use the endpoints of the outer arrays to define lines in the
// (z,r) plane.
double slopeMin = (rInner[2] - rInner[0]) / (zPlane[2] - zPlane[0]);
double slopeMax = (rOuter[2] - rOuter[0]) / (zPlane[2] - zPlane[0]);
double interceptMin = rInner[0] - slopeMin * zPlane[0];
double interceptMax = rOuter[0] - slopeMax * zPlane[0];
// At what value of z does the outer line hit the cutoff?
zPlane[1] = (rOuterCutoff - interceptMax) / slopeMax;
// Calculate the radii at this z:
rInner[1] = slopeMin * zPlane[1] + interceptMin;
rOuter[1] = rOuterCutoff;
// Now override the radius to keep the wheel inside the cryostat:
rOuter[2] = rOuterCutoff;
solar->fRmin.setValues(0,3,rInner);
solar->fRmax.setValues(0,3,rOuter);
solar->fDz.setValues (0,3,zPlane);
}
solar->fSPhi= 0;
solar->fDPhi= 2*M_PI;
m_shape=solar;
}
#endif
void SoVisualizeAction::handleSimplePolygonBrep(const GeoSimplePolygonBrep *brep) void SoVisualizeAction::handleSimplePolygonBrep(const GeoSimplePolygonBrep *brep)
{ {
//qDebug() << "SoVisualizeAction::handleSimplePolygonBrep"; //qDebug() << "SoVisualizeAction::handleSimplePolygonBrep";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment