Fork me on GitHub

Changeset 2600216 in git for modules/VertexFinder.cc


Ignore:
Timestamp:
May 17, 2016, 3:13:43 PM (8 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
3f7ef54
Parents:
4569b59
Message:

added variables for vertexing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/VertexFinder.cc

    r4569b59 r2600216  
    11/** \class VertexFinder
    22 *
    3  *  Merges particles from pile-up sample into event
    4  *
    5  *
    6  *  $Date: 2013-02-12 15:13:59 +0100 (Tue, 12 Feb 2013) $
    7  *  $Revision: 907 $
    8  *
     3 *  Cluster vertices from tracks
    94 *
    105 *  \author M. Selvaggi - UCL, Louvain-la-Neuve
    116 *
    127 */
     8
    139
    1410#include "modules/VertexFinder.h"
     
    7066
    7167  fOutputArray = ExportArray(GetString("OutputArray", "tracks"));
    72   fClusterOutputArray = ExportArray(GetString("ClusterOutputArray", "clusters"));
     68  fVertexOutputArray = ExportArray(GetString("VertexOutputArray", "vertices"));
    7369}
    7470
     
    183179    candidate->PositionError.SetXYZT(0.0, 0.0, clusterIDToDouble.at (cluster->first).at ("ez"), 0.0);
    184180
    185     fClusterOutputArray->Add(candidate);
     181    fVertexOutputArray->Add(candidate);
    186182  }
    187183////////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.