Problem 1816 - The #include guard on G4LivermorePolarizedPhotoElectricModel.hh
Summary: The #include guard on G4LivermorePolarizedPhotoElectricModel.hh
Status: RESOLVED FIXED
Alias: None
Product: Geant4
Classification: Unclassified
Component: processes/electromagnetic/lowenergy (show other problems)
Version: 10.2
Hardware: All All
: P5 normal
Assignee: Sebastien Incerti
URL:
Depends on:
Blocks:
 
Reported: 2016-01-20 10:21 CET by jared.strydhorst
Modified: 2016-01-20 10:53 CET (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
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.