ATLAS Offline Software
Loading...
Searching...
No Matches
TrigCaloClusterContainer.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4
5
6/*******************************************************
7
8NAME: TrigCaloClusterContainer.cxx
9PACKAGE: Trigger/TrigEvent/TrigCaloEvent
10AUTHORS: Denis O. Damazio
11
12PURPOSE: Keep a container for the important
13 output variables from the Calorimeter
14 LVL2 Trigger.
15 Variables here should be RAW variables.
16DATE: May 31st, 2011
17
18******************************************************/
19
21
22using namespace std;
23
24// Simple debug method
25void
27 std::cout << "TrigCaloClusterContainer with ";
28 std::cout << size() << " TrigCaloClusters" << std::endl;
30 (*i)->print();
31}
32
33// Simple debug method using MsgStream
34void
35TrigCaloClusterContainer::print ( MsgStream& log ) const {
36 log <<MSG::DEBUG<< "TrigCaloClusterContainer with ";
37 log <<MSG::DEBUG<< size() << " TrigCaloClusters" << endmsg;
39 (*i)->print(log);
40}
41
42// End of file TrigCaloClusterContainer.cxx
#define endmsg
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
const_iterator end() const noexcept
const_iterator begin() const noexcept
size_type size() const noexcept
void print(void) const
calls TrigCaloCluster::print (to std::cout) for all available clusters
STL namespace.