Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
civanch committed Jan 28, 2020
1 parent de44446 commit 6e52c6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SimG4Core/CustomPhysics/interface/CMSSIMPInelasticProcess.h
Expand Up @@ -18,8 +18,8 @@ class CMSSIMPInelasticProcess : public G4HadronicProcess {

private:
// hide assignment operator as private
CMSSIMPInelasticProcess& operator=(const CMSSIMPInelasticProcess& right);
CMSSIMPInelasticProcess(const CMSSIMPInelasticProcess&);
CMSSIMPInelasticProcess& operator=(const CMSSIMPInelasticProcess& right) = delete;
CMSSIMPInelasticProcess(const CMSSIMPInelasticProcess&) = delete;

G4ParticleDefinition* theParticle;
};
Expand Down
4 changes: 2 additions & 2 deletions SimG4Core/CustomPhysics/interface/CMSSIMPInelasticXS.h
Expand Up @@ -32,8 +32,8 @@ class CMSSIMPInelasticXS : public G4VCrossSectionDataSet {
private:
void Initialise(G4int Z, G4DynamicParticle* dp = nullptr, const char* = nullptr);

CMSSIMPInelasticXS& operator=(const CMSSIMPInelasticXS& right);
CMSSIMPInelasticXS(const CMSSIMPInelasticXS&);
CMSSIMPInelasticXS& operator=(const CMSSIMPInelasticXS& right) = delete;
CMSSIMPInelasticXS(const CMSSIMPInelasticXS&) = delete;

G4NeutronInelasticXS* nXsection;
const G4ParticleDefinition* neutron;
Expand Down

0 comments on commit 6e52c6b

Please sign in to comment.