BOSS 7.0.7
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
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), m_eventNo(0)
28{ }
29McAddress::McAddress(const CLID& clid, const std::string& fname,
30 const int& run, const int& event, const std::string& cname)
31: GenericAddress(McCnvSvc::storageType(), clid, fname, cname),
32 m_runNo(run), m_eventNo(event)
33{ }
34
McAddress(const CLID &clid, const std::string &fname, const std::string &cname)
Standard Constructor.
Definition: McAddress.cxx:25