Skip to content
Snippets Groups Projects
Commit cc1ea04f authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia Committed by Graeme Stewart
Browse files

Migrating to xAOD::EventInfo (EventTagAlgs-00-04-30)

	* Migrating to xAOD::EventInfo

2014-08-04 Gabriele Sabato <gabriele.sabato@cern.cn>
	* Modified src/ParticleJetTagBuilder.h and src/MissingETTagBuilder.h ToolHandle<>
	* Tagging EventTagAlgs-00-04-29
parent b9aad70e
No related merge requests found
...@@ -17,7 +17,7 @@ use AtlasPOOL AtlasPOOL-* External ...@@ -17,7 +17,7 @@ use AtlasPOOL AtlasPOOL-* External
use StoreGate StoreGate-* Control use StoreGate StoreGate-* Control
use AthenaBaseComps AthenaBaseComps-* Control use AthenaBaseComps AthenaBaseComps-* Control
use EventInfo EventInfo-* Event use xAODEventInfo xAODEventInfo-* Event/xAOD
use EventTagUtils EventTagUtils-* PhysicsAnalysis/EventTag use EventTagUtils EventTagUtils-* PhysicsAnalysis/EventTag
use AnalysisTriggerEvent AnalysisTriggerEvent-* PhysicsAnalysis/AnalysisTrigger use AnalysisTriggerEvent AnalysisTriggerEvent-* PhysicsAnalysis/AnalysisTrigger
......
...@@ -9,8 +9,7 @@ ...@@ -9,8 +9,7 @@
#include "AthenaPoolUtilities/AthenaAttributeListSpecification.h" #include "AthenaPoolUtilities/AthenaAttributeListSpecification.h"
#include "AthenaPoolUtilities/TagAthenaAttributeList.h" #include "AthenaPoolUtilities/TagAthenaAttributeList.h"
#include "EventInfo/EventInfo.h" #include "xAODEventInfo/EventInfo.h"
#include "EventInfo/TriggerInfo.h"
#include "StoreGate/StoreGateSvc.h" #include "StoreGate/StoreGateSvc.h"
...@@ -101,8 +100,8 @@ StatusCode EventSplitter::execute() ...@@ -101,8 +100,8 @@ StatusCode EventSplitter::execute()
// get Trigger Type Word for EventInfo // get Trigger Type Word for EventInfo
const DataHandle<EventInfo> eventInfo; const DataHandle<xAOD::EventInfo> eventInfo;
const DataHandle<EventInfo> eventInfoEnd; const DataHandle<xAOD::EventInfo> eventInfoEnd;
StatusCode sc = m_StoreGate->retrieve(eventInfo, eventInfoEnd); StatusCode sc = m_StoreGate->retrieve(eventInfo, eventInfoEnd);
if (sc.isFailure()) if (sc.isFailure())
{ {
...@@ -115,10 +114,7 @@ StatusCode EventSplitter::execute() ...@@ -115,10 +114,7 @@ StatusCode EventSplitter::execute()
return sc; return sc;
} }
uint32_t triggerTypeWord = 0; uint32_t triggerTypeWord = eventInfo->level1TriggerType();
const TriggerInfo *tInfo = eventInfo->trigger_info();
if (tInfo!=0)
triggerTypeWord = tInfo->level1TriggerType();
// get CTP_Decision // get CTP_Decision
const CTP_Decision * ctpDecision = 0; const CTP_Decision * ctpDecision = 0;
......
...@@ -40,7 +40,7 @@ private: ...@@ -40,7 +40,7 @@ private:
StoreGateSvc* m_storeGateSvc; StoreGateSvc* m_storeGateSvc;
//! Jet and Missing Tag Tool //! Jet and Missing Tag Tool
ToolHandle<JetMissingEtTagTool> m_jetMissingEtTagTool; ToolHandle<JetMetTagTool> m_jetMissingEtTagTool;
}; };
......
...@@ -43,7 +43,7 @@ private: ...@@ -43,7 +43,7 @@ private:
StoreGateSvc* m_storeGateSvc; StoreGateSvc* m_storeGateSvc;
//! Jet and Missing Tag Tool //! Jet and Missing Tag Tool
ToolHandle<JetMissingEtTagTool> m_jetMissingEtTagTool; ToolHandle<JetMetTagTool> m_jetMissingEtTagTool;
}; };
......
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