Skip to content
Snippets Groups Projects
Commit 5099de42 authored by Sebastien Ponce's avatar Sebastien Ponce Committed by Dmitry Popov
Browse files

Fixed compilation warnings with clang8

parent aab7d24f
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,6 @@ class PrimaryGeneratorMessenger: public G4UImessenger
~PrimaryGeneratorMessenger();
private:
PrimaryGeneratorAction* fAction;
G4UIdirectory* fGunDir;
};
......
......@@ -40,8 +40,8 @@
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
PrimaryGeneratorMessenger::PrimaryGeneratorMessenger(
PrimaryGeneratorAction* Gun)
:G4UImessenger(),fAction(Gun),
PrimaryGeneratorAction* /*Gun*/)
:G4UImessenger(),
fGunDir(0)
{
fGunDir = new G4UIdirectory("/testem/gun/");
......
......@@ -57,7 +57,7 @@ class TrackingAction : public G4UserTrackingAction {
DetectorConstruction* fDetector;
EventAction* fEventAction;
// LHCb
RMSPlotter* fRMSPlotter;
//RMSPlotter* fRMSPlotter;
G4double fXstartAbs, fXendAbs;
G4double fPrimaryCharge;
......
......@@ -48,8 +48,8 @@
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
TrackingAction::TrackingAction(DetectorConstruction* DET, EventAction* EA, RMSPlotter* rmsplotter)
:G4UserTrackingAction(), fDetector(DET), fEventAction(EA), fRMSPlotter(rmsplotter)
TrackingAction::TrackingAction(DetectorConstruction* DET, EventAction* EA, RMSPlotter* /*rmsplotter*/)
:G4UserTrackingAction(), fDetector(DET), fEventAction(EA)//, fRMSPlotter(rmsplotter)
{
fXstartAbs = fXendAbs = fPrimaryCharge = fDirX = 0.0;
}
......
......@@ -49,8 +49,6 @@ public:
protected:
private:
G4int NumPmts_; // TESTnumPmts
G4int NumPmtTot;
G4int NumQEbins;
......
......@@ -63,8 +63,6 @@ private:
G4Material *PMTPhCathodeMaterial;
G4Material *RichTbGasWinQuartz;
G4Material *HpdTubeEnvelopeMaterial;
G4Material *HpdQuartzWindowMaterial;
G4Material *HpdPhCathodeMaterial;
G4Material *HpdSiDetMaterial;
G4Material *HPDQuartzWindowMaterial;
G4Material *HPDPhCathodeMaterial;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment