Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

G4VTouchable: for Geant4 11.1.ref09 cannot forward declare the class … #1176

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DDG4/include/DDG4/Geant4SensDetAction.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

// Geant4 include files
#include <G4ThreeVector.hh>
#include <G4VTouchable.hh>

// C/C++ include files
#include <vector>
Expand All @@ -28,7 +29,6 @@
class G4HCofThisEvent;
class G4Step;
class G4Event;
class G4VTouchable;
class G4TouchableHistory;
class G4VHitsCollection;
class G4VReadOutGeometry;
Expand Down
3 changes: 2 additions & 1 deletion DDG4/include/DDG4/Geant4TouchableHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
#ifndef DDG4_GEANT4TOUCHABLEHANDLER_H
#define DDG4_GEANT4TOUCHABLEHANDLER_H

#include <G4VTouchable.hh>

// C/C++ include files
#include <vector>
#include <string>

// Forward declarations
class G4VPhysicalVolume;
class G4VTouchable;
class G4Step;

/// Namespace for the AIDA detector description toolkit
Expand Down
2 changes: 1 addition & 1 deletion DDG4/include/DDG4/Geant4VolumeManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#include <DD4hep/IDDescriptor.h>
#include <DDG4/Geant4Primitives.h>

#include <G4VTouchable.hh>
// Geant4 forward declarations
class G4VTouchable;
class G4VPhysicalVolume;


Expand Down
Loading