Skip to content

Commit db2a5e4

Browse files
Merge pull request #201 from sophiemiddleton/Mu2eDisplay
A few name fixes
2 parents d2fa036 + fb16f43 commit db2a5e4

13 files changed

+15
-160
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Mu2eEventDisplay
1+
# EventDisplay
22

3-
This repo contains the current Mu2eEventDisplay source code, example fcls, tutorials and documentation.
3+
This repo contains the current EventDisplay source code, example fcls, tutorials and documentation.
44

5-
The Mu2eEventDisplay is based on REve which is an updated version of the well-known and widely used TEve ROOT based Event Visualization Software. REve uses modernized infrastcutrue and allows Web Access for remote use.
5+
The EventDisplay is based on REve which is an updated version of the well-known and widely used TEve ROOT based Event Visualization Software. REve uses modernized infrastcutrue and allows Web Access for remote use.
66

77
For more information about REve and the implementation for Mu2e see: https://mu2ewiki.fnal.gov/wiki/Eve7EventDisplay#Examples_of_the_Eve-7_Mu2e_Display.
88

@@ -13,12 +13,12 @@ You can run the REve Mu2e code in the same way as any analyzer in Mu2e Offline.
1313
A number of "examples" are contained in the "examples" directory. The nominal_example.fcl is used for displaying reconstructed (and true MC) for nominal geometry:
1414

1515
```
16-
mu2e -c Mu2eEventDisplay/examples/nominal_example.fcl FILENAME.art
16+
mu2e -c EventDisplay/examples/nominal_example.fcl FILENAME.art
1717
```
1818

1919
Things can be added and removed on the GUI once set to "true" in the FCL. Just uncheck the boxes associated with the geometry you want to remove.
2020

21-
NOTE: you should run this from your working directory, not inside of Mu2eEventDisplay. This is for the firefox browser path #FIXME.
21+
NOTE: you should run this from your working directory, not inside of EventDisplay. This is for the firefox browser path #FIXME.
2222

2323
For extracted position data/MC please use the extracted_example.fcl
2424

examples/cosmic_example.fcl

Lines changed: 0 additions & 34 deletions
This file was deleted.

examples/extracted_example.fcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "Offline/fcl/minimalMessageService.fcl"
44
#include "Offline/fcl/standardProducers.fcl"
55
#include "Offline/fcl/standardServices.fcl"
6-
#include "Mu2eEventDisplay/fcl/prolog.fcl"
6+
#include "EventDisplay/fcl/prolog.fcl"
77
services : @local::Services.Reco
88
process_name : HelixED
99
source : { module_type : RootInput }

examples/multihelix_example.fcl

Lines changed: 0 additions & 35 deletions
This file was deleted.

examples/nominal_example.fcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "Offline/fcl/minimalMessageService.fcl"
44
#include "Offline/fcl/standardProducers.fcl"
55
#include "Offline/fcl/standardServices.fcl"
6-
#include "Mu2eEventDisplay/fcl/prolog.fcl"
6+
#include "EventDisplay/fcl/prolog.fcl"
77

88
services : @local::Services.Reco
99

examples/reflection_example.fcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "Offline/fcl/minimalMessageService.fcl"
44
#include "Offline/fcl/standardProducers.fcl"
55
#include "Offline/fcl/standardServices.fcl"
6-
#include "Mu2eEventDisplay/fcl/prolog.fcl"
6+
#include "EventDisplay/fcl/prolog.fcl"
77

88
services : @local::Services.Reco
99

examples/select_event_extracted_example.fcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "Offline/fcl/minimalMessageService.fcl"
44
#include "Offline/fcl/standardProducers.fcl"
55
#include "Offline/fcl/standardServices.fcl"
6-
#include "Mu2eEventDisplay/fcl/prolog.fcl"
6+
#include "EventDisplay/fcl/prolog.fcl"
77

88
services : @local::Services.Reco
99

examples/simple_helix_example.fcl

Lines changed: 0 additions & 76 deletions
This file was deleted.

src/DataInterface.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using namespace mu2e;
1313
namespace REX = ROOT::Experimental;
1414

15-
std::string drawfilename("Mu2eEventDisplay/config/drawutils.txt");
15+
std::string drawfilename("EventDisplay/config/drawutils.txt");
1616
SimpleConfig drawconfig(drawfilename);
1717

1818

src/MCInterface.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void MCInterface::SetLineColorPID(int PDGCode,REX::REveLine *line){
9292

9393
void MCInterface::AddMCTrajectoryCollection(REX::REveManager *&eveMng, bool firstloop, std::tuple<std::vector<std::string>, std::vector<const MCTrajectoryCollection *>> mctrack_tuple, REX::REveElement* &scene, std::vector<int> particleIds, bool extracted){
9494
std::cout<<"[ REveMCInterface::AddMCTrajectoryCollection() ]"<<std::endl;
95-
std::string drawfilename("Mu2eEventDisplay/config/drawutils.txt");
95+
std::string drawfilename("EventDisplay/config/drawutils.txt");
9696
SimpleConfig drawconfig(drawfilename);
9797

9898
// eEtract the track and input tag:
@@ -168,7 +168,7 @@ void MCInterface::AddSurfaceStepCollection(REX::REveManager *&eveMng, bool first
168168

169169
// make compund object to store hits
170170
auto allpoints = new REX::REveCompound(comptitle,comptitle,1);
171-
std::string drawfilename("Mu2eEventDisplay/config/drawutils.txt");
171+
std::string drawfilename("EventDisplay/config/drawutils.txt");
172172
SimpleConfig drawconfig(drawfilename);
173173

174174
// eXtract the track and input tag:

0 commit comments

Comments
 (0)