ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
PHNodeIntegrate.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file PHNodeIntegrate.h
1
#ifndef PHOOL_PHNODEINTEGRATE_H
2
#define PHOOL_PHNODEINTEGRATE_H
3
4
// Declaration of class PHNodeIntegrate
5
// Purpose: strategy which calls Integrate() on a PHNode if it is
6
// a PHObject
7
8
#include "
PHNodeOperation.h
"
9
10
class
PHNode
;
11
class
PHCompositeNode
;
12
13
class
PHNodeIntegrate
:
public
PHNodeOperation
14
{
15
public
:
16
PHNodeIntegrate
()
17
:
runnode
(nullptr)
18
,
runsumnode
(nullptr)
19
{
20
}
21
~PHNodeIntegrate
()
override
{}
22
void
RunNode
(
PHCompositeNode
*node)
23
{
24
runnode
= node;
25
}
26
void
RunSumNode
(
PHCompositeNode
*node)
27
{
28
runsumnode
= node;
29
}
30
31
protected
:
32
void
perform
(
PHNode
*)
override
;
33
34
private
:
35
PHCompositeNode
*
runnode
;
36
PHCompositeNode
*
runsumnode
;
37
};
38
39
#endif
coresoftware
blob
master
offline
framework
phool
PHNodeIntegrate.h
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:34
using
1.8.2 with
ECCE GitHub integration