From: jgrosseo Date: Mon, 31 Mar 2008 08:06:22 +0000 (+0000) Subject: adding run type, removing unused constructor X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=ad103e84fe2d435f93177034e2d669f9302a7295;p=u%2Fmrichter%2FAliRoot.git adding run type, removing unused constructor --- diff --git a/STEER/AliGRPPreprocessor.cxx b/STEER/AliGRPPreprocessor.cxx index c0fb6df8b08..8291e7bf0a3 100644 --- a/STEER/AliGRPPreprocessor.cxx +++ b/STEER/AliGRPPreprocessor.cxx @@ -51,18 +51,12 @@ ClassImp(AliGRPPreprocessor) //_______________________________________________________________ const char* AliGRPPreprocessor::fgkDCSDataPoints[12] = {"LHCState","LHCPeriod","LHCLuminosity","BeamIntensity","L3Current","L3Polarity","DipoleCurrent","DipolePolarity","CavernTemperature","CavernAtmosPressure","gva_cr5AtmosphericPressure","gva_meyrinAtmosphericPressure"}; -//_______________________________________________________________ -AliGRPPreprocessor::AliGRPPreprocessor(): - AliPreprocessor("GRP",0), fPressure(0) { - // default constructor - Don't use this! - -} - //_______________________________________________________________ AliGRPPreprocessor::AliGRPPreprocessor(AliShuttleInterface* shuttle): AliPreprocessor("GRP",shuttle), fPressure(0) { // constructor - shuttle must be instantiated! - + + AddRunType("PHYSICS"); } //_______________________________________________________________ diff --git a/STEER/AliGRPPreprocessor.h b/STEER/AliGRPPreprocessor.h index a4450d9951b..8e50717fdfb 100644 --- a/STEER/AliGRPPreprocessor.h +++ b/STEER/AliGRPPreprocessor.h @@ -28,7 +28,6 @@ class AliDCSSensorArray; class AliGRPPreprocessor: public AliPreprocessor { public: - AliGRPPreprocessor(); AliGRPPreprocessor(AliShuttleInterface* shuttle); virtual ~AliGRPPreprocessor();