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 @@ -142,10 +142,7 @@ private void initialize(String address){

provider = CCDB.createProvider(address);

LOGGER.log(Level.FINE, "[DB] ---> open connection with : {0}", address);
LOGGER.log(Level.FINE, "[DB] ---> database variation : {0}", this.variation);
LOGGER.log(Level.FINE, "[DB] ---> database run number : {0}", this.runNumber);
LOGGER.log(Level.FINE, "[DB] ---> database time stamp : {0}", databaseDate);
LOGGER.log(Level.INFO, String.format("[DB] ---> open %s | %s | %s | %s", runNumber, variation, databaseDate, address));

provider.connect();

Expand Down Expand Up @@ -277,8 +274,8 @@ public void loadTable(String table_name){

int ncolumns = asgmt.getColumnCount();
Vector<TypeTableColumn> typecolumn = asgmt.getTypeTable().getColumns();
LOGGER.log(Level.FINE, "[DB LOAD] ---> loading data table : {0}", table_name);
LOGGER.log(Level.FINE, "[DB LOAD] ---> number of columns : {0}", typecolumn.size());
LOGGER.log(Level.INFO, "[DB LOAD] ---> loading : {0}", table_name);
LOGGER.log(Level.FINE, "[DB LOAD] ---> columns : {0}", typecolumn.size());
for(int loop = 0; loop < ncolumns; loop++){
String name = typecolumn.get(loop).getName();
Vector<String> row = asgmt.getColumnValuesString(name);
Expand Down
5 changes: 0 additions & 5 deletions common-tools/clas-jcsg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@
<artifactId>clas-detector</artifactId>
<version>13.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jlab.clas</groupId>
<artifactId>clas-logging</artifactId>
<version>13.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jlab.clas</groupId>
<artifactId>clas-utils</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import org.jlab.geom.prim.Line3D;
import org.jlab.geom.prim.Point3D;
import org.jlab.geom.prim.Trap3D;
import org.jlab.logging.DefaultLogger;

/**
*
Expand Down Expand Up @@ -680,7 +679,6 @@ public DCGeant4Factory(ConstantProvider provider,
FeedthroughsStatus feedthroughsStatus,
boolean endplatesStatus,
double[][] shifts) {
DefaultLogger.debug();
dbref = DCdatabase.getInstance();
dbref.setMinistaggerType(ministaggerStatus);
dbref.setFeedthroughsStatus(feedthroughsStatus);
Expand Down
6 changes: 0 additions & 6 deletions common-tools/clas-reco/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,6 @@
<version>13.2.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.jlab.clas</groupId>
<artifactId>clas-logging</artifactId>
<version>13.2.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.jlab.clas</groupId>
<artifactId>clas-physics</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@ public static void main(String[] args){
parser.addOption("-n","-1","number of events to process");
parser.addOption("-y","0","yaml file");
parser.addOption("-u","true","update dictionary from writer ? ");
parser.addOption("-d","1","Debug level [0 - OFF, 1 - ON/default]");
parser.addOption("-S",null,"schema directory");
parser.addOption("-B",null,"background file");
parser.addOption("-P",null,"preload file for post-processing");
Expand All @@ -367,9 +366,6 @@ public static void main(String[] args){

parser.parse(args);

if(parser.getOption("-d").intValue() == 0) DefaultLogger.initialize();
else DefaultLogger.debug();

List<String> services = parser.getInputList();

String inputFile = parser.getOption("-i").stringValue();
Expand Down