Skip to content
Snippets Groups Projects
Commit 2a79b8c1 authored by Riccardo Maria Bianchi's avatar Riccardo Maria Bianchi :sunny:
Browse files

Fix gcc warning about init order

parent 9920377f
No related branches found
No related tags found
4 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!49298Adding a new TileDetectorFactoryLite to build Tile geo from SQLite
...@@ -40,8 +40,8 @@ TileDetectorFactoryLite::TileDetectorFactoryLite(StoreGateSvc *pDetStore, ...@@ -40,8 +40,8 @@ TileDetectorFactoryLite::TileDetectorFactoryLite(StoreGateSvc *pDetStore,
: m_detectorStore(pDetStore) : m_detectorStore(pDetStore)
, m_detectorManager(manager) , m_detectorManager(manager)
, m_sqliteReader(sqliteReader) , m_sqliteReader(sqliteReader)
, m_log(log)
, m_switches(switches) , m_switches(switches)
, m_log(log)
//, m_addPlatesToCellVolume(addPlates) //, m_addPlatesToCellVolume(addPlates)
//, m_uShape(ushape) //, m_uShape(ushape)
//, m_glue(glue) //, m_glue(glue)
......
...@@ -67,6 +67,9 @@ private: ...@@ -67,6 +67,9 @@ private:
/** Pointer to an instance of the GeoModel I/O class */ /** Pointer to an instance of the GeoModel I/O class */
GeoModelIO::ReadGeoModel* m_sqliteReader; GeoModelIO::ReadGeoModel* m_sqliteReader;
/** all switches */
TileSwitches m_switches;
/** Get message SVC */ /** Get message SVC */
MsgStream *m_log; MsgStream *m_log;
...@@ -88,9 +91,6 @@ private: ...@@ -88,9 +91,6 @@ private:
/** Flag for activation verbose level for debugging */ /** Flag for activation verbose level for debugging */
bool m_verbose; bool m_verbose;
/** all switches */
TileSwitches m_switches;
/** Geometry configuration: FULL, RECO */ /** Geometry configuration: FULL, RECO */
bool m_fullGeo; bool m_fullGeo;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment