@@ -106,7 +106,7 @@ The ```EventNtupleTimeCluster``` class contains all information related to a sin
106106The ``` CaloCluster ``` class contains all information related to a single calorimeter cluster
107107
108108* single objects: ``` calocluster ``` , ``` caloclustermc ```
109- * vector objects: ``` calohits ``` , ``` calomcsim ```
109+ * vector objects: ``` calohits ``` , ``` calomcsim ``` , ``` calohitsmc ```
110110
111111Examples: [ PlotCaloClusterEnergy.C] ( ./examples/PlotCaloClusterEnergy.C ) , [ PlotCaloClusterEnergy_RecoVsTrue.C] ( ./examples/PlotCaloClusterEnergy_RecoVsTrue.C ) , [ PlotCaloClusterAndHits.C] ( ./examples/PlotCaloClusterAndHits.C ) , [ PlotCaloCluster_SimParticles.C] ( ./examples/PlotCaloCluster_SimParticles.C )
112112
@@ -125,10 +125,12 @@ Some branches are not contained in any of the above classes:
125125Reach out to the developers on the #analysis-tools Slack channel if you need to have these added somewhere.
126126
127127## Accessing User-Friendly Classes
128- The ``` Event ``` class provides access to ``` Tracks ``` and ``` CrvCoincs ``` :
128+ The ``` Event ``` class provides access to ``` Tracks ``` , ``` CaloClusters ``` and ``` CrvCoincs ``` :
129129
130130* ``` CountTracks() ``` : counts the number of tracks in the event
131131* ``` GetTracks() ``` : gets the tracks (passes you a copy)
132+ * ``` CountCaloClusters() ``` : counts the number of calo clusters in the event
133+ * ``` GetCaloClusters() ``` : gets the calo clusters (passes you a copy)
132134* ``` CountCrvCoincs() ``` : counts the number of CRV coincidences in the event
133135* ``` GetCrvCoincs() ``` : gets the CRV coincidences
134136
@@ -137,6 +139,10 @@ The ```Track``` class provides access to the ```TrackSegments```, the ```TrackHi
137139* ``` GetHits() ``` , ``` CountHits() ```
138140* ``` GetMCParticles() ``` , ``` CountMCParticles() ```
139141
142+ The ``` CaloCluster ``` class provides access to the ``` CaloHits ``` and the ``` MCParticles ``` :
143+ * ``` GetHits() ``` , ``` CountHits() ```
144+ * ``` GetMCParticles() ``` , ``` CountMCParticles() ```
145+
140146All of these can be passed a cut function (see below) to count / select just a subset of the objects
141147
142148## Cut Functions
0 commit comments