Problem 1816

Summary: The #include guard on G4LivermorePolarizedPhotoElectricModel.hh
Product: Geant4 Reporter: jared.strydhorst
Component: processes/electromagnetic/lowenergyAssignee: Sebastien Incerti <incerti>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P5    
Version: 10.2   
Hardware: All   
OS: All   

Description jared.strydhorst 2016-01-20 10:21:22 CET
lines 39-40 of G4LivermorePolarizedPhotoElectricModel.hh are:

#ifndef G4LivermorePhotoElectricModel_h
#define G4LivermorePhotoElectricModel_h 1

This is the same as the include guard for G4LivermorePhotoElectricModel.hh. Unless the intent is to prevent including the headers for both files, I assume these lines should be:

#ifndef G4LivermorePolarizedPhotoElectricModel_h
#define G4LivermorePolarizedPhotoElectricModel_h 1
Comment 1 Sebastien Incerti 2016-01-20 10:53:33 CET
Thank you very much Jared, the fix has been committed.