Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
*/
public class CVTFilter extends ReconstructionEngine {

@Override
public void detectorChanged(int run) {}

/**
* @param docacutsum the docacutsum to set
Expand All @@ -38,8 +40,6 @@ public void setDocacutsum(double docacutsum) {
this.docacutsum = docacutsum;
}

private int Run = -1;

private String svtHitBank;
private String svtClusterBank;
private String svtCrossBank;
Expand Down Expand Up @@ -277,7 +277,7 @@ public void setBmtzmaxclussize(int bmtzmaxclussize) {
}

@Override
public boolean processDataEvent(DataEvent event) {
public boolean processDataEventUser(DataEvent event) {

Swim swimmer = new Swim();

Expand Down Expand Up @@ -463,7 +463,6 @@ public void loadConfiguration() {

}


public void initConstantsTables() {
String[] tables = new String[]{
"/calibration/svt/status",
Expand Down Expand Up @@ -583,7 +582,6 @@ public String getCovMat() {
return cvtCovMatBank;
}


public void printConfiguration() {

System.out.println("["+this.getName()+"] run with cosmics setting set to "+Constants.getInstance().isCosmics);
Expand Down Expand Up @@ -613,10 +611,6 @@ public void printConfiguration() {
System.out.println("["+this.getName()+"] max btm-z cluster size "+this.getBmtzmaxclussize());
System.out.println("["+this.getName()+"] helix radius cut (mm) "+this.rcut);
System.out.println("["+this.getName()+"] z0 cut (mm from target edges) "+this.z0cut);


}



}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
*/
public class SampleMaker extends ReconstructionEngine {


@Override
public void detectorChanged(int run) {}

/**
* @param docacutsum the docacutsum to set
*/
Expand Down Expand Up @@ -101,7 +103,6 @@ public SampleMaker() {
super("CVTEngine", "ziegler", "6.0");
}


@Override
public boolean init() {
this.loadConfiguration();
Expand Down Expand Up @@ -285,7 +286,7 @@ public void setBmtzmaxclussize(int bmtzmaxclussize) {
}

@Override
public boolean processDataEvent(DataEvent event) {
public boolean processDataEventUser(DataEvent event) {

Swim swimmer = new Swim();

Expand Down Expand Up @@ -693,6 +694,4 @@ public void printConfiguration() {

}



}
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
*/
public class SampleMaker extends ReconstructionEngine {


private int Run = -1;

private String svtHitBank;

public SampleMaker(String name) {
Expand All @@ -42,7 +39,9 @@ public SampleMaker() {
super("CVTQCDDATEngine", "ziegler", "6.0");
}


@Override
public void detectorChanged(int run) {}

@Override
public boolean init() {
this.initConstantsTables();
Expand Down Expand Up @@ -70,10 +69,8 @@ public int getRun(DataEvent event) {
return run;
}



@Override
public boolean processDataEvent(DataEvent event) {
public boolean processDataEventUser(DataEvent event) {

int run = this.getRun(event);
Swim swimmer = new Swim();
Expand Down Expand Up @@ -195,8 +192,4 @@ public void setSvtHitBank(String bstHitBank) {
public String getSvtHitBank() {
return this.svtHitBank;
}




}
Loading