Skip to content
Snippets Groups Projects
Commit 4c9dcf10 authored by Dmitry Popov's avatar Dmitry Popov
Browse files

Merge branch 'sponce_fixClangWarnings' into 'master'

Fixed compilation warnings with clang8

See merge request !67
parents d2f30d74 04da924e
No related branches found
No related tags found
1 merge request!67Fixed compilation warnings with clang8
......@@ -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