ATLAS Offline Software
Loading...
Searching...
No Matches
FakeHLTWord.h
Go to the documentation of this file.
1// Dear emacs, this is -*- c++ -*-
2
3/*
4 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
5*/
6
7// $Id: FakeHLTWord.h,v 1.3 2008-05-08 15:00:11 krasznaa Exp $
8#ifndef ANALYSISTRIGGEREVENT_FAKEHLTWORD_H
9#define ANALYSISTRIGGEREVENT_FAKEHLTWORD_H
10
11// System include(s):
12#include <inttypes.h>
13
14// Gaudi/Athena include(s):
16
26
27public:
29 FakeHLTWord( uint32_t word ) : m_word( word ) {}
30 virtual ~FakeHLTWord() {}
31
32 uint32_t word() const { return m_word; }
33
34private:
35 uint32_t m_word;
36
37}; // class FakeHLTWord
38
39CLASS_DEF( FakeHLTWord, 238803446, 1 )
40
41#endif // ANALYSISTRIGGEREVENT_FAKEHLTWORD_H
macros to associate a CLID to a type
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
Fake HLT word for streaming (deprecated)
Definition FakeHLTWord.h:25
uint32_t word() const
Definition FakeHLTWord.h:32
virtual ~FakeHLTWord()
Definition FakeHLTWord.h:30
uint32_t m_word
Definition FakeHLTWord.h:35
FakeHLTWord(uint32_t word)
Definition FakeHLTWord.h:29