BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
McAddress.cxx
Go to the documentation of this file.
1//====================================================================
2// McAddress implementation
3//--------------------------------------------------------------------
4//
5// Package : McEventSelector
6//
7// Description: Event TDR address implementation
8//
9//====================================================================
10
11// own
12#include "McAddress.h"
13#include "McCnvSvc.h"
14
15// Framework include files
16#include "GaudiKernel/GenericAddress.h"
17#include "GaudiKernel/MsgStream.h"
18
19// Event model
20#include <iostream>
21
22// Externals
23
24/// Standard Constructor
25McAddress::McAddress( const CLID& clid, const std::string& fname, const std::string& cname )
26 : GenericAddress( McCnvSvc::storageType(), clid, fname, cname )
27 , m_runNo( 0 )
28 , m_eventNo( 0 ) {}
29McAddress::McAddress( const CLID& clid, const std::string& fname, const int& run,
30 const int& event, const std::string& cname )
31 : GenericAddress( McCnvSvc::storageType(), clid, fname, cname )
32 , m_runNo( run )
33 , m_eventNo( event ) {}
McAddress(const CLID &clid, const std::string &fname, const std::string &cname)
Standard Constructor.
Definition McAddress.cxx:25