Skip to content
Snippets Groups Projects
Commit 46e5bcd9 authored by Peter Alan Steinberg's avatar Peter Alan Steinberg Committed by Graeme Stewart
Browse files

'resolved collision of module with L1Calo' (xAODForward-00-01-06)

parent cf704699
No related branches found
No related tags found
No related merge requests found
Showing
with 578 additions and 2 deletions
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// Local include(s):
#include "xAODForward/versions/ForwardEventInfoAuxContainer_v1.h"
namespace xAOD {
ForwardEventInfoAuxContainer_v1::ForwardEventInfoAuxContainer_v1()
: AuxContainerBase() {
AUX_VARIABLE( timeDiff );
AUX_VARIABLE( timeA );
AUX_VARIABLE( timeC );
AUX_VARIABLE( countA );
AUX_VARIABLE( countC );
}
} // namespace xAOD
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// xAOD include(s):
#include "xAODCore/AuxStoreAccessorMacros.h"
// Local include(s):
#include "xAODForward/versions/ForwardEventInfo_v1.h"
namespace xAOD {
ForwardEventInfo_v1::ForwardEventInfo_v1()
: SG::AuxElement() {
}
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( ForwardEventInfo_v1, float, timeDiff , setTimeDiff )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( ForwardEventInfo_v1, float, timeA , setTimeA )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( ForwardEventInfo_v1, float, timeC , setTimeC )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( ForwardEventInfo_v1, unsigned short, countA , setCountA )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( ForwardEventInfo_v1, unsigned short, countC , setCountC )
} // namespace xAOD
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// Local include(s):
#include "xAODForward/versions/MBTSModuleAuxContainer_v1.h"
namespace xAOD {
MBTSModuleAuxContainer_v1::MBTSModuleAuxContainer_v1()
: AuxContainerBase() {
AUX_VARIABLE( e );
AUX_VARIABLE( eta );
AUX_VARIABLE( phi );
AUX_VARIABLE( time );
AUX_VARIABLE( mbtsQuality );
AUX_VARIABLE( type );
AUX_VARIABLE( mbtsModule );
AUX_VARIABLE( channel );
}
} // namespace xAOD
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// xAOD include(s):
#include "xAODCore/AuxStoreAccessorMacros.h"
// Local include(s):
#include "xAODForward/versions/MBTSModule_v1.h"
namespace xAOD {
MBTSModule_v1::MBTSModule_v1()
: SG::AuxElement() {
}
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( MBTSModule_v1, float, e , setE )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( MBTSModule_v1, float, eta , setEta )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( MBTSModule_v1, float, phi , setPhi )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( MBTSModule_v1, float, time , setTime )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( MBTSModule_v1, int, mbtsQuality, setMbtsQuality )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( MBTSModule_v1, int, mbtsModule, setMbtsModule )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( MBTSModule_v1, int, type, setType )
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER( MBTSModule_v1, int, channel, setChannel )
} // namespace xAOD
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: ALFADataAuxContainer_v1.cxx 693858 2015-09-09 10:30:15Z
// krasznaa $
// Local include(s):
#include "xAODForward/versions/ZdcModuleAuxContainer_v1.h"
namespace xAOD {
ZdcModuleAuxContainer_v1::ZdcModuleAuxContainer_v1()
: AuxContainerBase() {
// Digit collectoins
AUX_VARIABLE( id );
AUX_VARIABLE( side );
AUX_VARIABLE( zdcModule );
AUX_VARIABLE( type );
AUX_VARIABLE( channel );
AUX_VARIABLE( energy );
AUX_VARIABLE( amplitude );
AUX_VARIABLE( time );
AUX_VARIABLE( qual );
AUX_VARIABLE( energyG0 );
AUX_VARIABLE( amplitudeG0 );
AUX_VARIABLE( timeG0 );
AUX_VARIABLE( qualG0 );
AUX_VARIABLE( energyG1 );
AUX_VARIABLE( amplitudeG1 );
AUX_VARIABLE( timeG1 );
AUX_VARIABLE( qualG1 );
AUX_VARIABLE( waveformTime );
AUX_VARIABLE( waveformADC );
AUX_VARIABLE( tt_g0d0 );
AUX_VARIABLE( tt_g0d1 );
AUX_VARIABLE( tt_g1d0 );
AUX_VARIABLE( tt_g1d1 );
}
} // namespace xAOD
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#include "xAODForward/ZdcModuleToString.h"
#include <sstream>
std::string ZdcModuleToString(const xAOD::ZdcModule& zm)
{
std::stringstream o;
o << " ID=" << zm.id();
o << " S/M/T/C=" << zm.side();
o << "/" << zm.zdcModule();
o << "/" << zm.type();
o << "/" << zm.channel();
o << "\n";
o << "All gain energy/amplitude/time/qual = ";
o << zm.energy();
o << "/" << zm.amplitude();
o << "/" << zm.time();
o << "/" << zm.qual();
o << "\n";
o << "Hi gain energy/amplitude/time/qual = ";
o << zm.energyG1();
o << "/" << zm.amplitudeG1();
o << "/" << zm.timeG1();
o << "/" << zm.qualG1();
o << "\n";
o << "Lo gain energy/amplitude/time/qual = ";
o << zm.energyG0();
o << "/" << zm.amplitudeG0();
o << "/" << zm.timeG0();
o << "/" << zm.qualG0();
o << "\n";
o << "All-gain waveform:\n";
for (size_t i = 0;i<zm.waveformTime().size();i++)
{
o << zm.waveformTime().at(i) << "\t";
}
o<<"\n";
for (size_t i = 0;i<zm.waveformADC().size();i++)
{
o << zm.waveformADC().at(i) << "\t";
}
o<<"\n";
o << "Hi-gain waveform:\n";
for (size_t i = 0;i<zm.waveformTimeG1().size();i++)
{
o << zm.waveformTimeG1().at(i) << "\t";
}
o<<"\n";
for (size_t i = 0;i<zm.waveformADCG1().size();i++)
{
o << zm.waveformADCG1().at(i) << "\t";
}
o<<"\n";
o << "Lo-gain waveform:\n";
for (size_t i = 0;i<zm.waveformTimeG0().size();i++)
{
o << zm.waveformTimeG0().at(i) << "\t";
}
o<<"\n";
for (size_t i = 0;i<zm.waveformADCG0().size();i++)
{
o << zm.waveformADCG0().at(i) << "\t";
}
o<<"\n";
return o.str();
}
std::string ZdcModuleToString(const xAOD::ZdcModuleContainer& zc)
{
std::stringstream o;
for(xAOD::ZdcModuleContainer::const_iterator iter = zc.begin();
iter != zc.end(); ++iter){
o << ZdcModuleToString(**iter) << std::endl;
}
return o.str();
}
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: ALFAData_v1.cxx 693858 2015-09-09 10:30:15Z krasznaa $
// xAOD include(s):
#include "xAODCore/AuxStoreAccessorMacros.h"
// Local include(s):
#include "xAODForward/versions/ZdcModule_v1.h"
namespace xAOD {
ZdcModule_v1::ZdcModule_v1()
: SG::AuxElement() {
}
// simple types
//AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1, uint64_t, id,setId)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1, uint32_t, id,setId)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,int,side,setSide)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,int,zdcModule,setZdcModule)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,int,type,setType)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,int,channel,setChannel)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,amplitude,setAmplitude)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,energy,setEnergy)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,time,setTime)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,qual,setQual)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,amplitudeG0,setAmplitudeG0)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,energyG0,setEnergyG0)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,timeG0,setTimeG0)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,qualG0,setQualG0)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,amplitudeG1,setAmplitudeG1)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,energyG1,setEnergyG1)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,timeG1,setTimeG1)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER(ZdcModule_v1,float,qualG1,setQualG1)
AUXSTORE_OBJECT_SETTER_AND_GETTER(ZdcModule_v1,std::vector<float>,waveformTime,setWaveformTime)
AUXSTORE_OBJECT_SETTER_AND_GETTER(ZdcModule_v1,std::vector<float>,waveformADC,setWaveformADC)
AUXSTORE_OBJECT_SETTER_AND_GETTER(ZdcModule_v1,std::vector<float>,waveformTimeG0,setWaveformTimeG0)
AUXSTORE_OBJECT_SETTER_AND_GETTER(ZdcModule_v1,std::vector<float>,waveformADCG0,setWaveformADCG0)
AUXSTORE_OBJECT_SETTER_AND_GETTER(ZdcModule_v1,std::vector<float>,waveformTimeG1,setWaveformTimeG1)
AUXSTORE_OBJECT_SETTER_AND_GETTER(ZdcModule_v1,std::vector<float>,waveformADCG1,setWaveformADCG1)
// LocRecEvCollection & LocRecODEvCollection
AUXSTORE_OBJECT_SETTER_AND_GETTER( ZdcModule_v1, ElementLink< TriggerTowerContainer >,
TTg0d0Link, setTTg0d0Link )
AUXSTORE_OBJECT_SETTER_AND_GETTER( ZdcModule_v1, ElementLink< TriggerTowerContainer >,
TTg0d1Link, setTTg0d1Link )
AUXSTORE_OBJECT_SETTER_AND_GETTER( ZdcModule_v1, ElementLink< TriggerTowerContainer >,
TTg1d0Link, setTTg1d0Link )
AUXSTORE_OBJECT_SETTER_AND_GETTER( ZdcModule_v1, ElementLink< TriggerTowerContainer >,
TTg1d1Link, setTTg1d1Link )
} // namespace xAOD
......@@ -2,13 +2,19 @@
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: ContainerProxies.cxx 693858 2015-09-09 10:30:15Z krasznaa $
// $Id: ContainerProxies.cxx 704515 2015-10-29 15:08:30Z azemla $
// EDM include(s):
#include "xAODCore/AddDVProxy.h"
// Local include(s):
#include "xAODForward/versions/ALFADataContainer_v1.h"
#include "xAODForward/versions/ZdcModuleContainer_v1.h"
#include "xAODForward/versions/MBTSModuleContainer_v1.h"
#include "xAODForward/versions/ForwardEventInfoContainer_v1.h"
// Set up the collection proxies:
ADD_NS_DV_PROXY( xAOD, ALFADataContainer_v1 );
ADD_NS_DV_PROXY( xAOD, ZdcModuleContainer_v1 );
ADD_NS_DV_PROXY( xAOD, MBTSModuleContainer_v1 );
ADD_NS_DV_PROXY( xAOD, ForwardEventInfoContainer_v1 );
package xAODForward
author Libor Nozka <libor.nozka@cern.ch>
author Peter Steinberg <peter.steinberg@bnl.gov>
author Andrzej Zemla <azemla@cern.ch>
author Attila Krasznahorkay <Attila.Krasznahorkay@cern.ch>
public
......@@ -10,6 +12,7 @@ use AtlasPolicy AtlasPolicy-*
use AthContainers AthContainers-* Control
use xAODCore xAODCore-* Event/xAOD
use xAODTrigL1Calo xAODTrigL1Calo-* Event/xAOD
library xAODForward ../Root/*.cxx
apply_pattern installed_library
......@@ -23,3 +26,7 @@ use AtlasROOT AtlasROOT-* External
apply_pattern lcgdict dict=xAODForward selectionfile=selection.xml \
headerfiles="../xAODForward/xAODForwardDict.h" \
extralibfiles=../Root/dict/*.cxx
apply_pattern do_genCLIDDB library=xAODForward
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef XAODFORWARD_FORWARDEVENTINFOS_H
#define XAODFORWARD_FORWARDEVENTINFOS_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/versions/ForwardEventInfo_v1.h"
namespace xAOD {
typedef ForwardEventInfo_v1 ForwardEventInfo;
}
// Declare a CLID for the type:
CLASS_DEF( xAOD::ForwardEventInfo, 116288219, 1 )
#endif // XAODFORWARD_ALFADATA_H
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef XAODFORWARD_FORWARDEVENTINFOSAUXCONTAINER_H
#define XAODFORWARD_FORWARDEVENTINFOSAUXCONTAINER_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/versions/ForwardEventInfoAuxContainer_v1.h"
namespace xAOD {
typedef ForwardEventInfoAuxContainer_v1 ForwardEventInfoAuxContainer;
}
// Set up a CLID for the class:
CLASS_DEF( xAOD::ForwardEventInfoAuxContainer, 1317747060, 1 )
#endif // XAODFORWARD_FORWARDEVENTINFOSAUXCONTAINER_H
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef XAODFORWARD_FORWARDEVENTINFOSCONTAINER_H
#define XAODFORWARD_FORWARDEVENTINFOSCONTAINER_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/ForwardEventInfo.h"
#include "xAODForward/versions/ForwardEventInfoContainer_v1.h"
namespace xAOD {
typedef ForwardEventInfoContainer_v1 ForwardEventInfoContainer;
}
// Set up a CLID for the container:
CLASS_DEF( xAOD::ForwardEventInfoContainer, 1121437929, 1 )
#endif // XAODFORWARD_FORWARDEVENTINFOSCONTAINER_H
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef XAODFORWARD_MBTSMODULES_H
#define XAODFORWARD_MBTSMODULES_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/versions/MBTSModule_v1.h"
namespace xAOD {
typedef MBTSModule_v1 MBTSModule;
}
// Declare a CLID for the type:
CLASS_DEF( xAOD::MBTSModule, 148724068, 1 )
#endif // XAODFORWARD_ALFADATA_H
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef XAODFORWARD_MBTSMODULESAUXCONTAINER_H
#define XAODFORWARD_MBTSMODULESAUXCONTAINER_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/versions/MBTSModuleAuxContainer_v1.h"
namespace xAOD {
typedef MBTSModuleAuxContainer_v1 MBTSModuleAuxContainer;
}
// Set up a CLID for the class:
CLASS_DEF( xAOD::MBTSModuleAuxContainer, 1178846899, 1 )
#endif // XAODFORWARD_MBTSMODULESAUXCONTAINER_H
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef XAODFORWARD_MBTSMODULESCONTAINER_H
#define XAODFORWARD_MBTSMODULESCONTAINER_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/MBTSModule.h"
#include "xAODForward/versions/MBTSModuleContainer_v1.h"
namespace xAOD {
typedef MBTSModuleContainer_v1 MBTSModuleContainer;
}
// Set up a CLID for the container:
CLASS_DEF( xAOD::MBTSModuleContainer, 1338382772, 1 )
#endif // XAODFORWARD_MBTSMODULESCONTAINER_H
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: ALFAData.h 693858 2015-09-09 10:30:15Z krasznaa $
#ifndef XAODFORWARD_ZDCMODULE_H
#define XAODFORWARD_ZDCMODULE_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/versions/ZdcModule_v1.h"
namespace xAOD {
typedef ZdcModule_v1 ZdcModule;
}
// Declare a CLID for the type:
CLASS_DEF( xAOD::ZdcModule, 144816136, 1 )
#endif // XAODFORWARD_ZDCMODULE_H
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: ALFADataAuxContainer.h 693858 2015-09-09 10:30:15Z krasznaa $
#ifndef XAODFORWARD_ZDCMODULEAUXCONTAINER_H
#define XAODFORWARD_ZDCMODULEAUXCONTAINER_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/versions/ZdcModuleAuxContainer_v1.h"
namespace xAOD {
typedef ZdcModuleAuxContainer_v1 ZdcModuleAuxContainer;
}
// Set up a CLID for the class:
CLASS_DEF( xAOD::ZdcModuleAuxContainer , 1177096607 , 1 )
#endif // XAODFORWARD_ZDCMODULEAUXCONTAINER_H
// Dear emacs, this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: ALFADataContainer.h 693858 2015-09-09 10:30:15Z krasznaa $
#ifndef XAODFORWARD_ZDCMODULECONTAINER_H
#define XAODFORWARD_ZDCMODULECONTAINER_H
// EDM include(s):
#include "xAODCore/CLASS_DEF.h"
// Local include(s):
#include "xAODForward/ZdcModule.h"
#include "xAODForward/versions/ZdcModuleContainer_v1.h"
namespace xAOD {
typedef ZdcModuleContainer_v1 ZdcModuleContainer;
}
// Set up a CLID for the container:
CLASS_DEF( xAOD::ZdcModuleContainer, 1110760440, 1 )
#endif // XAODFORWARD_ZDCMODULECONTAINER_H
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef ZDCMODULETOSTRING_H
#define ZDCMODULETOSTRING_H
#include "xAODForward/ZdcModule.h"
#include "xAODForward/ZdcModuleContainer.h"
std::string ZdcModuleToString(const xAOD::ZdcModule& zm) ;
std::string ZdcModuleToString(const xAOD::ZdcModuleContainer& zc) ;
#endif
<!-- $Id: selection.xml 693858 2015-09-09 10:30:15Z krasznaa $ -->
<!-- $Id: selection.xml 705183 2015-11-02 06:26:40Z steinber $ -->
<lcgdict>
<!-- V1 dictionaries: -->
<!-- ALFA -->
<class name="xAOD::ALFAData_v1" />
<class name="xAOD::ALFADataContainer_v1"
id="8D245B28-F246-42D7-BD85-054A757D2A13" />
<class name="xAOD::ALFADataAuxContainer_v1"
id="7D575485-A862-404F-85D0-D66BFB39D680" />
<!-- ZDC -->
<class name="xAOD::ZdcModule_v1" />
<class name="xAOD::ZdcModuleContainer_v1"
id="C99119A0-E3AB-457F-85E7-EF0B44A3F5EB" />
<class name="xAOD::ZdcModuleAuxContainer_v1"
id="72D723CD-1C67-49D2-9C70-5EE14C3B26A6" />
<!-- MBTSModules -->
<class name="xAOD::MBTSModule_v1" />
<class name="xAOD::MBTSModuleContainer_v1"
id="661BBB15-2F8C-41FD-A1A8-F075C328DB5A" />
<class name="xAOD::MBTSModuleAuxContainer_v1"
id="9D3409D5-8503-4994-BE9B-41F412D4E5A1" />
<!-- ForwardEventInfo -->
<class name="xAOD::ForwardEventInfo_v1" />
<class name="xAOD::ForwardEventInfoContainer_v1"
id="AAB8E87D-FEFB-481F-BA4C-AB35852A8026" />
<class name="xAOD::ForwardEventInfoAuxContainer_v1"
id="1795DED0-A289-4173-9BA9-E8A28D7FB2BE" />
<!-- Smart pointers to the V1 types: -->
<!-- ALFA -->
<class name="DataLink<xAOD::ALFADataContainer_v1>" />
<class name="std::vector<DataLink<xAOD::ALFADataContainer_v1> >" />
......@@ -16,4 +40,31 @@
<class name="std::vector<ElementLink<xAOD::ALFADataContainer_v1> >" />
<class name="std::vector<std::vector<ElementLink<xAOD::ALFADataContainer_v1> > >" />
<!-- ZDC -->
<class name="DataLink<xAOD::ZdcModuleContainer_v1>" />
<class name="std::vector<DataLink<xAOD::ZdcModuleContainer_v1> >" />
<class name="ElementLink<xAOD::ZdcModuleContainer_v1>" />
<class name="std::vector<ElementLink<xAOD::ZdcModuleContainer_v1> >" />
<class name="std::vector<std::vector<ElementLink<xAOD::ZdcModuleContainer_v1> > >" />
<class name="ElementLink<xAOD::TriggerTowerContainer_v2 >" />
<class name="std::vector<ElementLink<xAOD::TriggerTowerContainer_v2> >" />
<!-- MBTSModules -->
<class name="DataLink<xAOD::MBTSModuleContainer_v1>" />
<class name="std::vector<DataLink<xAOD::MBTSModuleContainer_v1> >" />
<class name="ElementLink<xAOD::MBTSModuleContainer_v1>" />
<class name="std::vector<ElementLink<xAOD::MBTSModuleContainer_v1> >" />
<class name="std::vector<std::vector<ElementLink<xAOD::MBTSModuleContainer_v1> > >" />
<!-- ForwardEventInfo -->
<class name="DataLink<xAOD::ForwardEventInfoContainer_v1>" />
<class name="std::vector<DataLink<xAOD::ForwardEventInfoContainer_v1> >" />
<class name="ElementLink<xAOD::ForwardEventInfoContainer_v1>" />
<class name="std::vector<ElementLink<xAOD::ForwardEventInfoContainer_v1> >" />
<class name="std::vector<std::vector<ElementLink<xAOD::ForwardEventInfoContainer_v1> > >" />
</lcgdict>
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