Skip to content

Commit

Permalink
initialize some pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Taylor committed Feb 6, 2019
1 parent cf29f24 commit 80da9d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/libraries/DIRC/DDIRCGeometry_factory.h
Expand Up @@ -18,7 +18,7 @@ class DDIRCGeometry_factory : public JFactory<DDIRCGeometry> {
DDIRCGeometry_factory() {}
~DDIRCGeometry_factory(){}

DDIRCGeometry *dircgeometry;
DDIRCGeometry *dircgeometry=nullptr;

//------------------
// brun
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/DIRC/DDIRCLut_factory.h
Expand Up @@ -16,7 +16,7 @@ class DDIRCLut_factory:public JFactory<DDIRCLut> {
DDIRCLut_factory(){};
~DDIRCLut_factory(){};

DDIRCLut *dirclut;
DDIRCLut *dirclut=nullptr;

jerror_t init(void){
return NOERROR;
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/TAGGER/DTAGHGeometry_factory.h
Expand Up @@ -17,7 +17,7 @@ class DTAGHGeometry_factory : public JFactory<DTAGHGeometry> {
DTAGHGeometry_factory(){}
~DTAGHGeometry_factory(){}

DTAGHGeometry *taghgeometry;
DTAGHGeometry *taghgeometry=nullptr;

//------------------
// brun
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/TAGGER/DTAGMGeometry_factory.h
Expand Up @@ -17,7 +17,7 @@ class DTAGMGeometry_factory : public JFactory<DTAGMGeometry> {
DTAGMGeometry_factory(){};
~DTAGMGeometry_factory(){};

DTAGMGeometry *tagmgeometry;
DTAGMGeometry *tagmgeometry=nullptr;

//------------------
// brun
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/TOF/DTOFGeometry_factory.h
Expand Up @@ -18,7 +18,7 @@ class DTOFGeometry_factory:public JFactory<DTOFGeometry>{
DTOFGeometry_factory(){};
~DTOFGeometry_factory(){};

DTOFGeometry *tofgeometry;
DTOFGeometry *tofgeometry=nullptr;

//------------------
// brun
Expand Down

0 comments on commit 80da9d4

Please sign in to comment.