Skip to content
Snippets Groups Projects
Commit 5448fd85 authored by Dave Casper's avatar Dave Casper
Browse files

Minor cleanup

parent 96250e95
No related branches found
No related tags found
1 merge request!80Athena 22.0.18 compatibility and Cosmics-related development
Pipeline #1902698 passed
This commit is part of merge request !80. Comments created here will be created in the context of that merge request.
...@@ -33,8 +33,8 @@ if __name__ == "__main__": ...@@ -33,8 +33,8 @@ if __name__ == "__main__":
ConfigFlags.Input.isMC = False # Needed to bypass autoconfig ConfigFlags.Input.isMC = False # Needed to bypass autoconfig
ConfigFlags.IOVDb.GlobalTag = "OFLCOND-XXXX-XXX-XX" # Needed to bypass autoconfig, only the "OFLCOND" matters at the moment ConfigFlags.IOVDb.GlobalTag = "OFLCOND-XXXX-XXX-XX" # Needed to bypass autoconfig, only the "OFLCOND" matters at the moment
ConfigFlags.IOVDb.DatabaseInstance = "OFLP200" # Use MC conditions for now ConfigFlags.IOVDb.DatabaseInstance = "OFLP200" # Use MC conditions for now
ConfigFlags.GeoModel.FaserVersion = "FASER-CR" # Default FASER geometry ConfigFlags.GeoModel.FaserVersion = "FASER-CR" # FASER cosmic ray geometry (station 2 only)
ConfigFlags.Input.ProjectName = "data20" ConfigFlags.Input.ProjectName = "data20" # Needed to bypass autoconfig
ConfigFlags.GeoModel.Align.Dynamic = False ConfigFlags.GeoModel.Align.Dynamic = False
ConfigFlags.Input.Files = ["cosmics.raw"] ConfigFlags.Input.Files = ["cosmics.raw"]
ConfigFlags.Output.RDOFileName = "tracker.RDO.pool.root" ConfigFlags.Output.RDOFileName = "tracker.RDO.pool.root"
......
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
from AthenaConfiguration.ComponentFactory import CompFactory #from AthenaConfiguration.ComponentFactory import CompFactory
from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
def TrackerByteStreamCfg(configFlags, **kwargs): def TrackerByteStreamCfg(configFlags, **kwargs):
......
...@@ -95,15 +95,15 @@ namespace Tracker ...@@ -95,15 +95,15 @@ namespace Tracker
/** return the detector element corresponding to this PRD /** return the detector element corresponding to this PRD
The pointer will be zero if the det el is not defined (i.e. it was not passed in by the ctor)*/ The pointer will be zero if the det el is not defined (i.e. it was not passed in by the ctor)*/
virtual const TrackerDD::SiDetectorElement* detectorElement() const; virtual const TrackerDD::SiDetectorElement* detectorElement() const override;
/** Interface method checking the type*/ /** Interface method checking the type*/
virtual bool type(Trk::PrepRawDataType::Type type) const override final; virtual bool type(Trk::PrepRawDataType::Type type) const final;
/** dump information about the SiCluster*/ /** dump information about the SiCluster*/
virtual MsgStream& dump( MsgStream& stream) const; virtual MsgStream& dump( MsgStream& stream) const override;
/** dump information about the SiCluster*/ /** dump information about the SiCluster*/
virtual std::ostream& dump( std::ostream& stream) const; virtual std::ostream& dump( std::ostream& stream) const override;
private: private:
FaserSiWidth m_width; //col, row, and width in mm FaserSiWidth m_width; //col, row, and width in mm
......
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