ATLAS Offline Software
Loading...
Searching...
No Matches
SlinkWord.h
Go to the documentation of this file.
1// Dear emacs, this is -*- c++ -*-
2/*
3 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
4*/
5#ifndef TRIGT1INTERFACES_SLINKWORD_H
6#define TRIGT1INTERFACES_SLINKWORD_H
7
8namespace LVL1CTP {
9
22 class SlinkWord {
23
24 public:
25 SlinkWord( unsigned int word );
26 ~SlinkWord();
27
29 unsigned int word() const;
30
31 private:
33 const unsigned int m_slinkWord;
34
35 }; // class SlinkWord
36
37} // namespace LVL1CTP
38
39#endif // TRIGT1INTERFACES_SLINKWORD_H
unsigned int word() const
returns Slink word
Definition SlinkWord.cxx:19
SlinkWord(unsigned int word)
Definition SlinkWord.cxx:9
const unsigned int m_slinkWord
this is the 32bit Slink word
Definition SlinkWord.h:33