Skip to content

Commit

Permalink
Merge pull request #19092 from ianna/dd-algorithm-move
Browse files Browse the repository at this point in the history
Move DD Algorithm Plugins in a Plugin Directory
  • Loading branch information
cmsbuild authored Jun 5, 2017
2 parents 070119f + 9acdc29 commit 67871c1
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DetectorDescription/Algorithm/plugins/BuildFile.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<library file="module.cc" name="DetectorDescriptionAlgorithmPlugins">
<library file="*.cc" name="DetectorDescriptionAlgorithmPlugins">
<use name="DetectorDescription/Algorithm"/>
</library>
<flags EDM_PLUGIN="1"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DetectorDescription/Algorithm/interface/DDAngular.h"
#include "DDAngular.h"

#include <math.h>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DetectorDescription/Algorithm/interface/DDLinear.h"
#include "DDLinear.h"

#include <math.h>

Expand Down
4 changes: 2 additions & 2 deletions DetectorDescription/Algorithm/plugins/module.cc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <string>

#include "DetectorDescription/Algorithm/interface/DDAlgorithmFactory.h"
#include "DetectorDescription/Algorithm/interface/DDAngular.h"
#include "DetectorDescription/Algorithm/interface/DDLinear.h"
#include "DDAngular.h"
#include "DDLinear.h"
#include "FWCore/PluginManager/interface/PluginFactory.h"

DEFINE_EDM_PLUGIN( DDAlgorithmFactory, DDAngular, "global:DDAngular");
Expand Down

0 comments on commit 67871c1

Please sign in to comment.